<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Waldemar's blog &#187; General</title>
	<atom:link href="http://blog.testsautomation.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.testsautomation.com</link>
	<description>Live fast, die old...</description>
	<lastBuildDate>Mon, 12 Jul 2010 20:51:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automating web flow with Selenium and Eclipse IDE</title>
		<link>http://blog.testsautomation.com/2009/11/automating-web-flow-with-selenium-and-eclipse-ide/</link>
		<comments>http://blog.testsautomation.com/2009/11/automating-web-flow-with-selenium-and-eclipse-ide/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 02:53:19 +0000</pubDate>
		<dc:creator>Waldemar</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[selenium]]></category>

		<guid isPermaLink="false">http://blog.testsautomation.com/?p=435</guid>
		<description><![CDATA[Some of you may already know Selenium. Basically it&#8217;s free and open source tool for web application functional testing. It&#8217;s mainly know as replacement for HP&#8217;s QuickTestProfessional. I&#8217;ve recently discovered Selenium as very helpful for automating data setup for load testing.
Here is a small description howto setup Eclipse and run Selenium script through it.
1) Download [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you may already know Selenium. Basically it&#8217;s free and open source tool for web application functional testing. It&#8217;s mainly know as replacement for HP&#8217;s QuickTestProfessional. I&#8217;ve recently discovered Selenium as very helpful for automating data setup for load testing.</p>
<p>Here is a small description howto setup Eclipse and run Selenium script through it.</p>
<p>1) Download Eclipse IDE from <a href="http://www.eclipse.org/downloads/" target="_blank"> http://www.eclipse.org/downloads/</a><br />
2) Download Selenium RC from <a href="http://seleniumhq.org/download/" target="_blank">http://seleniumhq.org/download/</a><br />
3) Download Junit from <a href="http://www.junit.org/" target="_blank">http://www.junit.org/</a><br />
4) Create new project in Eclipse:</p>
<ul>
<li>Go to File -> New -> Java Project</li>
<li>enter project name e.g. &#8220;Sample&#8221;</li>
<li>Click &#8220;Finish&#8221; button</li>
</ul>
<p>5) Import Selenium and JUnit packages into the project:</p>
<ul>
<li>In Package Explorer right click project &#8220;Sample&#8221; and select Properties</li>
<li>Go to &#8220;Java Build Path&#8221; then select &#8220;Libraries&#8221; tab</li>
<li>Click &#8220;Add External JARs&#8221; and import junit-4.7.jar and selenium-java-client-driver.jar</li>
</ul>
<p>Now our Eclipse environment should be ready. Next step is to prepare a test case in Selenium IDE. I&#8217;ve prepared small test that searches for &#8220;linux&#8221; word in google. To export test case as Java, in Selenium IDE go to Options -> Format -> Java (Junit) Selenium RC. As a result you should get something like this:</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="kw2">package</span> com.<span class="me1">example</span>.<span class="me1">tests</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="co2">import com.thoughtworks.selenium.*;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co2">import java.util.regex.Pattern;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">public</span> <span class="kw2">class</span> Untitled <span class="kw2">extends</span> SeleneseTestCase <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">public</span> <span class="kw4">void</span> setUp<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="kw2">throws</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3AException+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span class="kw3">Exception</span></a> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; setUp<span class="br0">&#40;</span><span class="st0">&quot;http://change-this-to-the-site-you-are-testing/&quot;</span>, <span class="st0">&quot;*chrome&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">public</span> <span class="kw4">void</span> testUntitled<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="kw2">throws</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3AException+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span class="kw3">Exception</span></a> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium.<span class="me1">open</span><span class="br0">&#40;</span><span class="st0">&quot;/&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium.<span class="me1">type</span><span class="br0">&#40;</span><span class="st0">&quot;q&quot;</span>, <span class="st0">&quot;linux&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium.<span class="me1">click</span><span class="br0">&#40;</span><span class="st0">&quot;btnG&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
<p>Default Junit code generated by Selenium doesn&#8217;t use Selenium RC. Because of that I updated the code a little bit to connect to localhost Selenium RC on port 4444. Here is updated version:</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="kw2">package</span> com.<span class="me1">example</span>.<span class="me1">tests</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="co2">import com.thoughtworks.selenium.*;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co2">import java.util.regex.Pattern;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">public</span> <span class="kw2">class</span> Untitled <span class="kw2">extends</span> SeleneseTestCase <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">public</span> DefaultSelenium selenium;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">public</span> <span class="kw4">void</span> setUp<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="kw2">throws</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3AException+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span class="kw3">Exception</span></a> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium = <span class="kw2">new</span> DefaultSelenium<span class="br0">&#40;</span><span class="st0">&quot;localhost&quot;</span>, <span class="nu0">4444</span>, <span class="st0">&quot;*iexplore&quot;</span>, <span class="st0">&quot;http://www.google.com/&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium.<span class="me1">start</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">public</span> <span class="kw4">void</span> testUntitled<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="kw2">throws</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3AException+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span class="kw3">Exception</span></a> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium.<span class="me1">open</span><span class="br0">&#40;</span><span class="st0">&quot;/&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium.<span class="me1">type</span><span class="br0">&#40;</span><span class="st0">&quot;q&quot;</span>, <span class="st0">&quot;linux&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium.<span class="me1">click</span><span class="br0">&#40;</span><span class="st0">&quot;btnG&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
<p>Now, lets add it in our Eclipse project:</p>
<ul>
<li>In Package Explorer right click on our &#8220;Sample&#8221; project and select New -> Class</li>
<li>Enter class name &#8220;Untitled&#8221; and package name &#8220;com.example.tests&#8221;</li>
<li>Click &#8220;Finish&#8221; button</li>
</ul>
<p>Before we run our test, we need to start Selenium RC. For that open command line and under selenium-remote-control-1.0.1/selenium-server-1.0.1 run command &#8220;java -jar selenium-server.jar&#8221;. It will run Selenium RC server on default port 4444.</p>
<p>Now, to start the test just select Run -> Run As -> Junit test. It should open two IE browsers. One for Selenium RC and second with Google results for &#8220;linux&#8221; word. </p>
<p>Because we run Java code, it&#8217;s only up to us how we want to run the test. Below is our example update to search for &#8220;linux&#8221; word in a loop 5 times with 5 seconds intervals.</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="kw2">package</span> com.<span class="me1">example</span>.<span class="me1">tests</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="co2">import com.thoughtworks.selenium.*;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co2">import java.util.regex.Pattern;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">public</span> <span class="kw2">class</span> Untitled <span class="kw2">extends</span> SeleneseTestCase <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">public</span> DefaultSelenium selenium;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">public</span> <span class="kw4">void</span> setUp<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="kw2">throws</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3AException+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span class="kw3">Exception</span></a> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium = <span class="kw2">new</span> DefaultSelenium<span class="br0">&#40;</span><span class="st0">&quot;localhost&quot;</span>, <span class="nu0">4444</span>, <span class="st0">&quot;*iexplore&quot;</span>, <span class="st0">&quot;http://www.google.com/&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium.<span class="me1">start</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">public</span> <span class="kw4">void</span> testUntitled<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="kw2">throws</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3AException+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span class="kw3">Exception</span></a> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">for</span><span class="br0">&#40;</span><span class="kw4">int</span> i = <span class="nu0">0</span>; i &lt; <span class="nu0">5</span>; i++<span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium.<span class="me1">open</span><span class="br0">&#40;</span><span class="st0">&quot;/&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium.<span class="me1">type</span><span class="br0">&#40;</span><span class="st0">&quot;q&quot;</span>, <span class="st0">&quot;linux&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium.<span class="me1">click</span><span class="br0">&#40;</span><span class="st0">&quot;btnG&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selenium.<span class="me1">waitForPageToLoad</span><span class="br0">&#40;</span><span class="st0">&quot;10000&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3AThread+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span class="kw3">Thread</span></a>.<span class="me1">sleep</span><span class="br0">&#40;</span><span class="nu0">5000</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.testsautomation.com/2009/11/automating-web-flow-with-selenium-and-eclipse-ide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GUI flow fuzzing</title>
		<link>http://blog.testsautomation.com/2009/03/gui-flow-fuzzing/</link>
		<comments>http://blog.testsautomation.com/2009/03/gui-flow-fuzzing/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 23:20:38 +0000</pubDate>
		<dc:creator>Waldemar</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[fuzzing gui]]></category>

		<guid isPermaLink="false">http://blog.testsautomation.com/?p=158</guid>
		<description><![CDATA[Fuzz testing is an automated way for checking how application reacts on unexpected input data. This is a type of negative testing. This is also very know technique for automated vulnerability finding. 
But I didn&#8217;t hear anything about tool that will operate on the GUI in a fuzzy way (or maybe my Google search &#8220;kung-fu&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Fuzz testing is an automated way for checking how application reacts on unexpected input data. This is a type of negative testing. This is also very know technique for automated vulnerability finding. </p>
<p>But I didn&#8217;t hear anything about tool that will operate on the GUI in a fuzzy way (or maybe my Google search &#8220;kung-fu&#8221; isn&#8217;t so good). Instead of providing incorrect, trashy data we could provide input values correctly but in wrong order, etc. In general an application should receive not only correct data but correct data in correct order. Example: you shouldn&#8217;t be able to save child user while parent user is still not stored in db (this can end up with an exception).</p>
<p>Some kind of GUI fuzzing tool would find it by providing correct data and using correct steps but in completely unexpected order. The other problem is how to fuzz with application logic. Providing input data is simple, but providing steps that user performs on the GUI and then fuzzing the whole logic&#8230; hmmm&#8230; maybe I could use QTP. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.testsautomation.com/2009/03/gui-flow-fuzzing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WSDL from source code</title>
		<link>http://blog.testsautomation.com/2009/02/wsdl-from-source-code/</link>
		<comments>http://blog.testsautomation.com/2009/02/wsdl-from-source-code/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 16:40:22 +0000</pubDate>
		<dc:creator>Waldemar</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[anti-pattern]]></category>
		<category><![CDATA[wsdl]]></category>

		<guid isPermaLink="false">http://blog.testsautomation.com/?p=144</guid>
		<description><![CDATA[One (if not the biggest) anti pattern for me is when developer generates WSDL file from source code. Have you ever tried to create HTML page in MS Word? If so, then you know that 90% of the code is crappy. WSDL is a service description. How you want to understand or test it if [...]]]></description>
			<content:encoded><![CDATA[<p>One (if not the biggest) anti pattern for me is when developer generates WSDL file from source code. Have you ever tried to create HTML page in MS Word? If so, then you know that 90% of the code is crappy. WSDL is a service description. How you want to understand or test it if the code looks like a mess?</p>
<p>Another thing &#8211; service description depends on your business. Do you really want to leave it for automated tools? Do they know your business area better?</p>
<p>So, next time when someone gives you WSDL generated from source code, you don&#8217;t even have to look at it to reject it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.testsautomation.com/2009/02/wsdl-from-source-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTP POST or GET</title>
		<link>http://blog.testsautomation.com/2009/01/http-post-or-get-web-services-performance-testing/</link>
		<comments>http://blog.testsautomation.com/2009/01/http-post-or-get-web-services-performance-testing/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 23:13:18 +0000</pubDate>
		<dc:creator>Waldemar</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[HTTP POST GET performance web services]]></category>

		<guid isPermaLink="false">http://blog.testsautomation.com/?p=61</guid>
		<description><![CDATA[Some time ago I made a little test comparing web services performance using HTTP GET and POST methods. I used the same script, in the same environment with the same web service. HTTP method was the only difference.
I discovered that POST method is twice much faster than request sent using GET method.
You should also know [...]]]></description>
			<content:encoded><![CDATA[<p>Some time ago I made a little test comparing web services performance using HTTP GET and POST methods. I used the same script, in the same environment with the same web service. HTTP method was the only difference.</p>
<p>I discovered that POST method is <strong>twice</strong> much faster than request sent using GET method.<br />
You should also know that request size with GET method can be limited, although RFC2616 says:</p>
<blockquote>
<pre style="text-align: left;">The HTTP protocol does not place any a priori limit on the length of
   a URI. Servers MUST be able to handle the URI of any resource they
   serve, and SHOULD be able to handle URIs of unbounded length if they
   provide GET-based forms that could generate such URIs.
</pre>
</blockquote>
<p>So if you are planning some web services performance testing or you want to speed up your tests a little bit before customer demo <img src='http://blog.testsautomation.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  you should consider POST HTTP method.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.testsautomation.com/2009/01/http-post-or-get-web-services-performance-testing/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hello on my blog</title>
		<link>http://blog.testsautomation.com/2009/01/hello-on-my-blog/</link>
		<comments>http://blog.testsautomation.com/2009/01/hello-on-my-blog/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 17:58:35 +0000</pubDate>
		<dc:creator>Waldemar</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.testsautomation.com/?p=3</guid>
		<description><![CDATA[Hello and welcome on Waldemar&#8217;s blog.
]]></description>
			<content:encoded><![CDATA[<p>Hello and welcome on Waldemar&#8217;s blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.testsautomation.com/2009/01/hello-on-my-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
