<?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>thecrumb.com &#187; selenium</title>
	<atom:link href="http://thecrumb.com/tag/selenium/feed/" rel="self" type="application/rss+xml" />
	<link>http://thecrumb.com</link>
	<description>developer &#124; thinker &#124; tinkerer</description>
	<lastBuildDate>Sat, 04 Feb 2012 01:28:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>CFSelenium and VirtualBox</title>
		<link>http://thecrumb.com/2011/02/25/cfselenium-and-virtualbox/</link>
		<comments>http://thecrumb.com/2011/02/25/cfselenium-and-virtualbox/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 21:32:20 +0000</pubDate>
		<dc:creator>Jim Priest</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://thecrumb.com/?p=1381</guid>
		<description><![CDATA[I finally found some time to get back up to speed on Selenium and MXUnit today.  MXUnit I got running quickly which hasn&#8217;t been the case in the past so I must be learning something, or the gang at MXUnit &#8230; <a href="http://thecrumb.com/2011/02/25/cfselenium-and-virtualbox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I finally found some time to get back up to speed on <a href="http://seleniumhq.org/">Selenium</a> and <a href="http://mxunit.org/">MXUnit</a> today.  MXUnit I got running quickly which hasn&#8217;t been the case in the past so I must be learning something, or the gang at MXUnit is making things easier.</p>
<p>Selenium proved a bit more difficult mainly due to my development environment&#8230;</p>
<h3><span id="more-1381"></span>Problem 1</h3>
<p>I have <a href="http://www.virtualbox.org/">VirtualBox</a> setup running ColdFusion, Apache and MySQL.   Using a shared directory I have Apache pointing at my Eclipse workspace which lives on my &#8216;host&#8217;.</p>
<p>Setting up a very simple Selenium test using the new <a href="https://github.com/bobsilverberg/CFSelenium">CFSelenium</a>, I just wanted to see if I could get a browser window to pop open&#8230;</p>
<pre class="brush: plain; title: ; notranslate">
selenium = new selenium(&quot;http://www.google.com/&quot;, &quot;localhost&quot;, 4444, &quot;*googlechrome&quot;);
selenium.start();
selenium.open(&quot;/&quot;);
</pre>
<p>This failed with a &#8220;<em>The Response of the Selenium RC is invalid: Connection Failure </em>&#8221; error.</p>
<p>The issue is the &#8220;localhost&#8221; in the Selenium setup.  The test, running on my guest VM can&#8217;t communicate with the Selenium RC server running on my host.</p>
<p>What I needed to do was direct things to my host IP which is 192.168.2.2&#8230;</p>
<pre class="brush: plain; title: ; notranslate">
selenium = new selenium(&quot;http://www.google.com/&quot;, &quot;192.168.2.2&quot;, 4444, &quot;*googlechrome&quot;);
</pre>
<p>This correctly kicked off a Google Chrome.  But what about Firefox?</p>
<h3>Problem 2</h3>
<p>Trying to run tests in Firefox introduced another issue:</p>
<blockquote><p>The  Response of the Selenium RC is invalid: Failed to start new browser  session: java.lang.RuntimeException: Firefox 3 could not be found in the  path! Please add the directory containing &#8221;firefox.exe&#8221; to your PATH  environment variable, or explicitly specify a path to Firefox 3 like this: *firefox3c:\blah\firefox.exe</p></blockquote>
<p>I tried explicitly defining the path, using the example from the error, as well as adding my Firefox directory to the path.</p>
<pre class="brush: plain; title: ; notranslate">
selenium = new selenium(&quot;http://www.google.com/&quot;, &quot;192.168.2.2&quot;, 4444, &quot;*firefox3C:\Program Files (x86)\Mozilla Firefox\firefox.exe&quot;);
</pre>
<p>No luck.  After a bit of Googling it turns out the correct syntax is:</p>
<pre class="brush: plain; title: ; notranslate">
selenium = new selenium(&quot;http://www.google.com/&quot;, &quot;192.168.2.2&quot;, 4444, &quot;*firefox C:\Program Files (x86)\Mozilla Firefox\firefox.exe&quot;);
</pre>
<p>Notice the space between &#8220;*firefox&#8221; and the path.  That is important. :)</p>
<p>Now things work!</p>
<p>It seems like you could easily configure a powerful testing environment by simply loading up several VMs with various flavors of operating systems and browsers and then pointing one set of tests at them all.</p>
<ol>
<li>VM 1 = Windows XP with old flavors of IE and Firefox</li>
<li>VM 2 = Windows 7 with IE9, Chrome and Firefox 4</li>
<li>Linux, etc&#8230;</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://thecrumb.com/2011/02/25/cfselenium-and-virtualbox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Deleting Trac Spam with Selenium</title>
		<link>http://thecrumb.com/2009/11/12/deleting-trac-spam-with-selenium/</link>
		<comments>http://thecrumb.com/2009/11/12/deleting-trac-spam-with-selenium/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 20:04:04 +0000</pubDate>
		<dc:creator>Jim Priest</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[selenium]]></category>

		<guid isPermaLink="false">http://www.thecrumb.com/?p=969</guid>
		<description><![CDATA[The CFEclipse Trac wiki has been polluted with spam for quite some time now.  We&#8217;ve finally got the spam under control but faced a big task of going in and cleaning up all the spam related pages.  I started doing &#8230; <a href="http://thecrumb.com/2009/11/12/deleting-trac-spam-with-selenium/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The CFEclipse Trac wiki has been polluted with spam for quite some time now.  We&#8217;ve finally got the spam under control but faced a big task of going in and cleaning up all the spam related pages.  I started doing it manually and quickly realized this was something I could automate with a bit of creative thinking.</p>
<p>I cranked up <a title="Selenium IDE" href="http://seleniumhq.org/projects/ide/">Selenium IDE</a> and recorded myself manually deleting a page or two.  Looking at the resulting HTML test code I started hacking.</p>
<p>I had a list of all the spam pages via the Index page from Trac.  I cleaned that up into a comma delimited list.  Than I hacked up a short ColdFusion script to loop through the list and write out some HTML following the format of the Selenium test:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;tr&gt; &lt;!-- click spam link --&gt;
&lt;td&gt;clickAndWait&lt;/td&gt;
&lt;td&gt;link=401_buy_oxytrol
&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt; &lt;!-- click delete page button on spam page --&gt;
&lt;td&gt;clickAndWait&lt;/td&gt;
&lt;td&gt;//input[@value='Delete page']&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt; &lt;!-- click confirmation delete button --&gt;
&lt;td&gt;clickAndWait&lt;/td&gt;
&lt;td&gt;//input[@value='Delete page']&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
</pre>
<p>In hindsight I could have probably hacked my CF loop directly into my Selenium script and saved (and run) it as a .cfm.</p>
<p>I had well over 100 spam links to delete. I fired off the revised Selenium script in Selenium IDE and set on a medium speed (I didn&#8217;t want anything to timeout) and it chugged through these in a minute or two.</p>
<p>Done!   Probably not an intended use for Selenium but it worked and saved me a huge amount of manual labor.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrumb.com/2009/11/12/deleting-trac-spam-with-selenium/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Selenium IDE 1.0 Beta 2 Released</title>
		<link>http://thecrumb.com/2008/06/09/selenium-ide-10-beta-2-released/</link>
		<comments>http://thecrumb.com/2008/06/09/selenium-ide-10-beta-2-released/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 19:10:09 +0000</pubDate>
		<dc:creator>Jim Priest</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[selenium]]></category>

		<guid isPermaLink="false">http://www.thecrumb.com/?p=458</guid>
		<description><![CDATA[I was getting ready to run some Selenium tests and on checking the Open QA site noticed that they have released a new beta for Selenium IDE. Changelog is here. Release notes here. One big one I see &#8211; Firefox &#8230; <a href="http://thecrumb.com/2008/06/09/selenium-ide-10-beta-2-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was getting ready to run some Selenium tests and on checking the Open QA site noticed that they have <a href="http://selenium-ide.openqa.org/">released a new beta for Selenium IDE</a>.</p>
<ul>
<li>Changelog is <a href="http://selenium-ide.openqa.org/changelog.jsp">here</a>.</li>
<li>Release notes <a href="http://jira.openqa.org/secure/ReleaseNote.jspa?projectId=10070&amp;styleName=Html&amp;version=10581">here</a>.</li>
</ul>
<p>One big one I see &#8211; Firefox 3 support! :)</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrumb.com/2008/06/09/selenium-ide-10-beta-2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two New Testing/Automation Tools</title>
		<link>http://thecrumb.com/2008/04/24/two-new-testingautomation-tools/</link>
		<comments>http://thecrumb.com/2008/04/24/two-new-testingautomation-tools/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 19:29:51 +0000</pubDate>
		<dc:creator>Jim Priest</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.thecrumb.com/?p=436</guid>
		<description><![CDATA[I found both these over the weekend and they both look really interesting: Cubic &#8211; from the same folks that make Selenium CubicTest is a graphical Eclipse plug-in for writing Selenium and Watir tests. It makes web tests faster and &#8230; <a href="http://thecrumb.com/2008/04/24/two-new-testingautomation-tools/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I found both these over the weekend and they both look really interesting:</p>
<p><a title="Cubic" href="http://cubictest.openqa.org/">Cubic</a> &#8211; from the same folks that make Selenium</p>
<blockquote><p>CubicTest is a graphical Eclipse plug-in for writing Selenium and Watir tests.  				It makes web tests faster and easier to write, and provides abstractions to make tests more robust and reusable.</p></blockquote>
<p><a title="CoScripter" href="http://services.alphaworks.ibm.com/coscripter/browse/about">CoScripter</a> &#8211; IBM(?)</p>
<blockquote><p>CoScripter is a system for recording, automating, and sharing       processes performed in a web browser such as printing photos online,       requesting a vacation hold for postal mail, or checking flight arrival       times.  Instructions for processes are recorded and stored in       easy-to-read text here on the CoScripter web site, so anyone can make       use of them.</p></blockquote>
<blockquote></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://thecrumb.com/2008/04/24/two-new-testingautomation-tools/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Selenium 1.0 Beta</title>
		<link>http://thecrumb.com/2008/04/01/selenium-10-beta/</link>
		<comments>http://thecrumb.com/2008/04/01/selenium-10-beta/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 12:59:01 +0000</pubDate>
		<dc:creator>Jim Priest</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[selenium]]></category>

		<guid isPermaLink="false">http://www.thecrumb.com/?p=402</guid>
		<description><![CDATA[I was poking around the Selenium site and noticed they have released 1.0 betas for several of their tools: Selenium Core Selenium RC Selenium IDE Update: Took me a bit to find the Core download &#8211; here is a link &#8230; <a href="http://thecrumb.com/2008/04/01/selenium-10-beta/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was poking around the <a href="http://selenium.openqa.org">Selenium site</a> and noticed they have released 1.0 betas for several of their tools:</p>
<ul>
<li><a href="http://selenium.openqa.org/index.html#Selenium_Core">Selenium Core</a></li>
<li><a href="http://selenium-rc.openqa.org/">Selenium RC</a></li>
<li><a href="http://selenium-ide.openqa.org/download.jsp">Selenium IDE</a></li>
</ul>
<p><em>Update</em>:  Took me a bit to find the Core download &#8211; here is a <a href="http://release.openqa.org/selenium-core/1.0-beta-1/">link</a> to the .zip</p>
<p>Ajax support also seems MUCH improved in Selenium IDE.  I have a form with some jQuery autocomplete fields that I have been struggling to make work and just got it working with the new Selenium IDE with minimal tweaking!</p>
<p><em>Update Part II</em>: Selenium IDE has a new look (see below).  Also it appears there are a LOT more commands available.   I was trying to get a script running with Ant and it was failing because it was running to fast. Within the IDE and the Testrunner &#8211; you can manually adjust the speed. After a bit of digging on the Selenium forums  I discovered you can now do:  setSpeed (value) within the IDE.  This will set the speed the test runs at automatically.</p>
<p><a href='http://thecrumb.com/wp-content/uploads/2008/04/selenium1.gif'><img src="http://www.thecrumb.com/wp-content/uploads/2008/04/selenium1-202x300.gif" alt="" width="202" height="300" class="alignleft size-medium wp-image-403" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thecrumb.com/2008/04/01/selenium-10-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CFMeetup:  Pragmatic ColdFusion: Build, Test, Deploy</title>
		<link>http://thecrumb.com/2007/12/13/cfmeetup-pragmatic-coldfusion-build-test-deploy-2/</link>
		<comments>http://thecrumb.com/2007/12/13/cfmeetup-pragmatic-coldfusion-build-test-deploy-2/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 19:55:59 +0000</pubDate>
		<dc:creator>Jim Priest</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Ant]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.thecrumb.com/2007/12/13/cfmeetup-pragmatic-coldfusion-build-test-deploy-2/</guid>
		<description><![CDATA[John Paul Ashenfelter gave a great presentation this afternoon on CFMeetup. &#8220;Pragmatic ColdFusion: Build, Test, Deploy&#8221; covered really high level concepts of using Ant, version control and testing to manage your applications. I am already doing some of the same &#8230; <a href="http://thecrumb.com/2007/12/13/cfmeetup-pragmatic-coldfusion-build-test-deploy-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ashenfelter.com/">John Paul Ashenfelter</a> gave a great presentation this afternoon on CFMeetup.  &#8220;Pragmatic ColdFusion: Build, Test, Deploy&#8221; covered really high level concepts of using Ant, version control and  testing to manage your applications.   I am already doing some of the same things but it is always neat to see how people do things differently.</p>
<p>One thing I liked is John had tagging built into his Ant scripts.  He tags everything when his build file is run.  I think I&#8217;m going to write up a &#8216;yes/no&#8217; dialog so I can be prompted and skip it if I don&#8217;t want to create a tag.   I&#8217;m also curious about using something like Cruise Control for continuous integration.   I really want to learn more about how people implement that when developing web applications.</p>
<p>I&#8217;m also going to start using the <a href="http://subclipse.tigris.org/svnant.html">SVNAnt</a> task instead of calling exec.  The syntax looks MUCH cleaner.</p>
<p>The <a href="http://coldfusion.meetup.com/17/messages/boards/view/viewthread?thread=3147031">CFMeetup Link</a> to John&#8217;s presentation:  <a href="http://experts.acrobat.com/p41566907/">http://experts.acrobat.com/p41566907/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thecrumb.com/2007/12/13/cfmeetup-pragmatic-coldfusion-build-test-deploy-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Do You Have Selenium Setup?</title>
		<link>http://thecrumb.com/2007/11/30/how-do-you-have-selenium-setup/</link>
		<comments>http://thecrumb.com/2007/11/30/how-do-you-have-selenium-setup/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 19:28:50 +0000</pubDate>
		<dc:creator>Jim Priest</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.thecrumb.com/2007/11/30/how-do-you-have-selenium-setup/</guid>
		<description><![CDATA[I&#8217;m trying to come up with a standardized setup for Selenium so I can share it with our team and everyone can have the same configuration. I have Selenium IDE installed within Firefox to record tests and I&#8217;m tinkering with &#8230; <a href="http://thecrumb.com/2007/11/30/how-do-you-have-selenium-setup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying to come up with a standardized setup for Selenium so I can share it with our team and everyone can have the same configuration.</p>
<p>I have Selenium IDE installed within Firefox to record tests and I&#8217;m tinkering with different ways of setting up Selenium Core to run test suites locally. Our projects are stored in SVN and I want to store the test scripts there as well.  I&#8217;m thinking I can store the scripts in a <em>/testing</em> directory and then include them within the webroot of my project on checkout using the svn:externals property.</p>
<p>If you use Selenium &#8211; how do you have it setup and configured?  Do you use the Core or just Selenium IDE to run your tests?</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrumb.com/2007/11/30/how-do-you-have-selenium-setup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Reminder: Selenium and Ant TACFUG Presentation</title>
		<link>http://thecrumb.com/2007/11/05/reminder-selenium-and-ant-tacfug-presentation/</link>
		<comments>http://thecrumb.com/2007/11/05/reminder-selenium-and-ant-tacfug-presentation/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 15:49:09 +0000</pubDate>
		<dc:creator>Jim Priest</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Ant]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[tacfug]]></category>

		<guid isPermaLink="false">http://www.thecrumb.com/2007/11/05/reminder-selenium-and-ant-tacfug-presentation/</guid>
		<description><![CDATA[When: Tomorrow (Tuesday) @ 6:30pm Where: PStrat What: An introduction to using Selenium to test your web applications. Also &#8211; a recap of my previous Ant presentation. All hastily put together this weekend while my kids threw Lego&#8217;s at me&#8230; &#8230; <a href="http://thecrumb.com/2007/11/05/reminder-selenium-and-ant-tacfug-presentation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When: Tomorrow (Tuesday) @ 6:30pm</p>
<p>Where: <a href="http://www.pstrat.com/who-office.cfm">PStrat</a></p>
<p>What:  An introduction to using Selenium to test your web applications. Also &#8211; a recap of my previous Ant presentation.  All hastily put together this weekend while my kids threw Lego&#8217;s at me&#8230;</p>
<p>Come on out and hang with your fellow Triangle ColdFusion geeks and watch me fuddle through another presentation!!  We both might learn something!</p>
<p>More info at the <a href="http://www.tacfug.org/">TACFUG</a> site!</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrumb.com/2007/11/05/reminder-selenium-and-ant-tacfug-presentation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TACFUG Presentation: Selenium and Ant</title>
		<link>http://thecrumb.com/2007/10/31/tacfug-presentation-selenium-and-ant/</link>
		<comments>http://thecrumb.com/2007/10/31/tacfug-presentation-selenium-and-ant/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 16:42:50 +0000</pubDate>
		<dc:creator>Jim Priest</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Ant]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[tacfug]]></category>

		<guid isPermaLink="false">http://www.thecrumb.com/2007/10/31/tacfug-presentation-selenium-and-ant/</guid>
		<description><![CDATA[I&#8217;ll be giving a presentation on Selenium and Ant next Tuesday (November 6th) at the Triangle Area ColdFusion User Group. See the TACFUG site for location and details. I&#8217;ll be showing how to setup and use Selenium and the Selenium &#8230; <a href="http://thecrumb.com/2007/10/31/tacfug-presentation-selenium-and-ant/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be giving a presentation on Selenium and Ant next Tuesday (November 6th) at the <a href="http://www.tacfug.org/">Triangle Area ColdFusion User Group</a>.  See the TACFUG site for location and details.</p>
<p>I&#8217;ll be showing how to setup and use Selenium and the Selenium IDE to create and run tests, and I&#8217;ll be giving a brief version of my previous Ant presentation (maybe combining Ant and Selenium!) as well for those who missed that.</p>
<p>If you haven&#8217;t checked out a TACFUG meeting in awhile I encourage you to come!!</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrumb.com/2007/10/31/tacfug-presentation-selenium-and-ant/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Molybdenum? Another Selenium Interface</title>
		<link>http://thecrumb.com/2007/10/26/molybdenum-another-selenium-interface/</link>
		<comments>http://thecrumb.com/2007/10/26/molybdenum-another-selenium-interface/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 15:43:52 +0000</pubDate>
		<dc:creator>Jim Priest</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Ant]]></category>
		<category><![CDATA[selenium]]></category>

		<guid isPermaLink="false">http://www.thecrumb.com/2007/10/26/molybdenum-another-selenium-interface/</guid>
		<description><![CDATA[I was setting up a laptop to start working on my upcoming Selenium presentation and entered &#8216;Selenium&#8217; in the Firefox addon search box. Selenium IDE popped up and so did &#8220;Molybdenum&#8221;&#8230; After a quick download and install: Molybdenum is based &#8230; <a href="http://thecrumb.com/2007/10/26/molybdenum-another-selenium-interface/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was setting up a laptop to start working on my <a href="http://www.tacfug.org/">upcoming Selenium presentation</a> and entered &#8216;Selenium&#8217; in the Firefox addon search box.  Selenium IDE popped up and so did &#8220;Molybdenum&#8221;&#8230;</p>
<p>After a quick download and install:</p>
<blockquote><p>Molybdenum is based on Selenium and enhances it with direct browser integration and a visual editor. At the same time it removes the need to deploy testscripts on the server to be tested.</p></blockquote>
<p>It is a Firefox extension and appears to be very similar to Selenium IDE allowing you to record tests.  Reading the help it seems like you can also use Molybdenum to start and run tests and maybe create reports.  There is even a brief mention of using Ant.</p>
<p>I&#8217;m curious if anyone has heard of this or used it?  I&#8217;ll post more as I work through putting together my Selenium presentation.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecrumb.com/2007/10/26/molybdenum-another-selenium-interface/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

