<?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>Test Automation Blog &#187; Rational Functional Tester</title>
	<atom:link href="http://testautomationblog.com/tag/rational-functional-tester/feed/" rel="self" type="application/rss+xml" />
	<link>http://testautomationblog.com</link>
	<description>On software test automation and quality assurance</description>
	<lastBuildDate>Sun, 16 May 2010 09:33:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Five Reasons Why I Like Selenium</title>
		<link>http://testautomationblog.com/2009/12/25/five-reasons-i-like-selenium/</link>
		<comments>http://testautomationblog.com/2009/12/25/five-reasons-i-like-selenium/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 16:29:02 +0000</pubDate>
		<dc:creator>TAB</dc:creator>
				<category><![CDATA[Test Tool Reviews]]></category>
		<category><![CDATA[Rational Functional Tester]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[test tools]]></category>
		<category><![CDATA[UI test automation]]></category>
		<category><![CDATA[web automation]]></category>

		<guid isPermaLink="false">http://testautomationblog.com/?p=167</guid>
		<description><![CDATA[

Several months ago I started working on a new test automation project for a web site and one of the first things to do was to evaluate and choose a tool for the task. The two main contenders were Selenium and IBM Rational Functional Tester. I chose Selenium and since then never got to regret [...]]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --></p>
<p style="margin-bottom: 0in; text-align: center;"><img class="aligncenter size-full wp-image-168" title="Image (c) George Rex" src="http://testautomationblog.com/wp-content/uploads/2009/12/selenium-cam.jpg" alt="" width="320" height="213" /></p>
<p style="margin-bottom: 0in;">Several months ago I started working on a new test automation project for a web site and one of the first things to do was to evaluate and choose a tool for the task. The two main contenders were <a href="http://seleniumhq.org/" target="_blank">Selenium</a> and <a href="http://www-01.ibm.com/software/awdtools/tester/functional/" target="_blank">IBM Rational Functional Tester</a>. I chose Selenium and since then never got to regret this choice. Here are some of the main reasons I lke this opensource tool much better than the expensive commerial alternatives for web automation:</p>
<h5 style="margin-bottom: 0in;">Selenium acknowledges the fact that to create useful tests you will have to code them</h5>
<p style="margin-bottom: 0in;">Yes, it gives you a tool that can record sequences of user interactions, but as a whole Selenium is not built with the assumption that this will be the main approach you will use to create your tests. The <a href="http://seleniumhq.org/projects/ide/" target="_blank">recording tool</a> (which is a very easy to install Firefox plugin) is useful as a learning aid and maybe for very simple tests. But what I like most about it is that it can covert your recorded sequence to code in any of the supported scripting languages.   And this brings me to the second point:</p>
<h5 style="margin-bottom: 0in;">You get to choose the scripting language</h5>
<p style="margin-bottom: 0in;">Most commercial automation tools force you to use some Visual Basic dialect  as a scripting language. If you are lucky you get something relatively functional like VBA (with TestPartner) or even VB.NET (with Rational Functional Tester). Otherwise you might be forced to code your tests in VBScript, which is really, really painful (the main reason why I don't like QuickTest Professional). Rational Functional Tester also lets you use Java, which makes it my favorite among the commercial tools.</p>
<p style="margin-bottom: 0in;">Selenium is language-agnostic. You can use almost any programming language you want. C# and Java are popular  and PHP is also an option if you are automating a PHP web app and want to stick to the same language for testing.  <a href="http://mislav.uniqpath.com/poignant-guide/" target="_blank">Ruby</a> is a great language that makes coding fun and the Selenium library for Ruby provides some domain-specific idioms for testing, similar to what Rails does for web development. If you are a Perl, Python or Groovy fan you can use them too. As an additional bonus you will be able to use any development environment you are comfortable with to write your scripts – be it Eclipse, Microsoft Visual Studio or even Vi or Emacs if you want to.</p>
<h5 style="margin-bottom: 0in;">Selenium has a powerful approach for locating UI objects</h5>
<p style="margin-bottom: 0in;">Most automation tools are surprisingly limited in the way they identify the UI objects to interact with. They let you locate a control by some unique property (like id) or by a collection of properties which together identify it uniquely on the web page. In my experience this approach is sufficient in only about half of the real-world cases.</p>
<p style="margin-bottom: 0in;">Imagine a web page containing 3 identical OK buttons. The buttons are exactly the same and have no id's  or anything in their properties to distinguish them. Lets say that the first button is located in a form with id 'signup', the second is inside 'order' and the third is inside 'invoice'.  Most automation tools do not let you easily identify a UI object in relation to other objects in the page, i.e. you can not say <em>I want to click the button with caption 'OK', which is located inside the 'signup' form</em>. Normally the most you get is <em>I want to click the second button with caption 'OK' on the page. </em><span style="font-style: normal;">This will work, but only until you get a new version of your application with added additional OK button above the one you are interested in. The XPath expressions in Selenium can locate objects in the DOM document hierarchy (“//form[@id='signup']//input[@type='button' and @value='OK']”) and are very powerful – for instance you can specify that you want to click the checkbox, which is located inside a table row next to a cell with some specific text in it.</span></p>
<h5 style="margin-bottom: 0in;">Your tests will run on any browser without changes (well, almost)</h5>
<p style="margin-bottom: 0in;">While you should not expect that automated tests will catch most browser-dependent bugs (like broken layout), the option to run your  tests on all browsers that you support is definitely useful. As with programming languages, Selenium offers you a wide choice of browers to run your tests on – not only specific versions of IE and maybe Firefox (the choice you are likely to get from commercial test automation tools), but also Safari, Chrome and Opera. What is more important – about 95% of your tests will run without any changes on all supported browsers. I don't know other automation tool that does this.</p>
<h5 style="margin-bottom: 0in;">It is surprisingly stable and robust for a 1.0 version</h5>
<p style="margin-bottom: 0in;">My experience with test automation is that if you want to run lots of long tests, you have to expect that something will go wrong at some point – random crashes are not that uncommon in this business. Selenium is at least as stable as anything else I have tried and we routinely run hour-long tests without any problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://testautomationblog.com/2009/12/25/five-reasons-i-like-selenium/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Forrester Wave™ &#8211; Functional Testing Solutions</title>
		<link>http://testautomationblog.com/2009/04/11/the-forrester-wave-functional-testing-solution/</link>
		<comments>http://testautomationblog.com/2009/04/11/the-forrester-wave-functional-testing-solution/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 10:59:12 +0000</pubDate>
		<dc:creator>TAB</dc:creator>
				<category><![CDATA[Test Tool Reviews]]></category>
		<category><![CDATA[automation tools]]></category>
		<category><![CDATA[Forrester]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[QuickTest Professional]]></category>
		<category><![CDATA[Rational Functional Tester]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[SilkTest]]></category>
		<category><![CDATA[test management]]></category>
		<category><![CDATA[test tools]]></category>

		<guid isPermaLink="false">http://testautomationblog.com/?p=72</guid>
		<description><![CDATA[In case you are in the process of evaluating test tools, this review by Forrester research might give you a good initial overview of the current commercial offerings.  I find the whole thing objective and if you read it carefully you will also be able to find the key facts about the commercial automation tools.]]></description>
			<content:encoded><![CDATA[<p><em>Opensource might actually be better.</em></p>
<p><img class="aligncenter size-full wp-image-73" title="wave" src="http://testautomationblog.com/wp-content/uploads/2009/04/wave.jpg" alt="wave" width="300" height="200" />In case you are in the process of evaluating test tools, this review by Forrester research might give you a good initial overview of the current commercial offerings - <a href="https://h10078.www1.hp.com/bto/download/functional-testing-q308_forrester.pdf" target="_blank">The Forrester Wave™: Functional Testing Solutions, Q3 2008</a></p>
<p>It looks at solutions that support the whole testing and quality management process and the conclusion is not surprising:</p>
<blockquote><p>
<em>"In today's market, HP is the default choice"</em></p></blockquote>
<p>I find the whole thing objective and if you read it carefully you will be able to find the key facts about the automation tools.<br />
The evaluated vendors and the corresponding tools are HP (ex Mercury) with QuickTest Professional, IBM (ex Rational) with Rational Functional Tester, Compuware with TestPartner, Borland (ex Segue) with SilkTest plus also tools from Empirix and Seapine.</p>
<p>The review has its main emphasis on test management and not on test automation:</p>
<blockquote><p><em>"Testing teams looking to purchase just a single product should focus on test management first, since mature practices in this area are a prerequisite for success with test automation."</em><em><br />
</em></p></blockquote>
<p>While this sounds logical at first, I somehow can not agree with it entirely. But what follows is really interesting:</p>
<blockquote><p><em>"There are exceptions, though: most notably, development teams looking to automate their own regression testing. Commercial test automation tools, however, tend to be less effective here than open source alternatives like FIT/FitNesse or Selenium.</em>"</p></blockquote>
<p>and:</p>
<blockquote><p><em>"Both open source testing tools and SOA testing tools are relatively small parts of the functional testing tools market, but they’re growing in importance. Why? Because iterative development methodologies demand that test automation start earlier in the life cycle, and the testing organizations that purchase commercial tools struggle to make this a reality."</em></p></blockquote>
<p>It seems that the analysts that wrote this really have some insignt in the business. Overall it is a very interesting read. Did you know that the element Selenium is the antidote to Mercury poisoning?</p>
]]></content:encoded>
			<wfw:commentRss>http://testautomationblog.com/2009/04/11/the-forrester-wave-functional-testing-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
