<?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>Selenium Testing? Do Cross Browser Testing with Sauce Labs &#187; sfse</title>
	<atom:link href="http://saucelabs.com/blog/index.php/tag/sfse/feed/" rel="self" type="application/rss+xml" />
	<link>http://saucelabs.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 10 May 2012 17:20:37 +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>Why CSS Locators are the way to go vs XPath</title>
		<link>http://saucelabs.com/blog/index.php/2011/05/why-css-locators-are-the-way-to-go-vs-xpath/</link>
		<comments>http://saucelabs.com/blog/index.php/2011/05/why-css-locators-are-the-way-to-go-vs-xpath/#comments</comments>
		<pubDate>Tue, 17 May 2011 14:15:55 +0000</pubDate>
		<dc:creator>Ashley Wilson</dc:creator>
				<category><![CDATA[Meetups]]></category>
		<category><![CDATA[Selenium Knowledge]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css selectors]]></category>
		<category><![CDATA[Locators]]></category>
		<category><![CDATA[selenium tips]]></category>
		<category><![CDATA[sfse]]></category>
		<category><![CDATA[XPath]]></category>

		<guid isPermaLink="false">http://saucelabs.com/blog/?p=3988</guid>
		<description><![CDATA[Last week, our own Santiago Suarez Ordoñez gave a presentation to the San Francisco Selenium Meetup group that convinced us all to say no (for the most part) to XPath and yes to CSS Locators in our Selenium tests. In his role as official Sauce Ninja and as a prolific poster in the Selenium forums, [...]]]></description>
			<content:encoded><![CDATA[<p>Last week, our own Santiago Suarez Ordoñez gave a presentation to the <a href="http://meetup.com/seleniumsanfrancisco">San Francisco Selenium Meetup group</a> that convinced us all to say <strong>no</strong> (for the most part) to XPath and <strong>yes</strong> to CSS Locators in our Selenium tests.</p>
<p>In his role as official Sauce Ninja and as a prolific poster in the Selenium forums, Santi has helped more users solve locator issues than possibly anyone else in the world. He&#8217;s previously written a number of <a href="http://saucelabs.com/blog/index.php/tag/css-selectors/">blog posts</a> on ways to improve locator performance. As Sauce CEO John Dunham puts it, &#8220;If there was a foursquare mayorship for locators, Santi would have it for a lifetime.&#8221;</p>
<p>Drawing from this experience, he gave us these four reasons for using CSS Locators:</p>
<p>1. They&#8217;re faster<br />
2. They&#8217;re more readable<br />
3. CSS is jQuery&#8217;s locating strategy<br />
4. No one else uses XPATH anyways!</p>
<p>I can&#8217;t speak for everyone, but Santi sure sold me on point number one when he showed off the <a href="https://gist.github.com/963821">performance metric script</a> he wrote a script that tested the speed of XPath vs the speed of CSS Locators. There wasn&#8217;t much of a difference in Firefox, Safari, or Chrome, but with IE, the results were undeniable. Take a look:<br />
<a rel="attachment wp-att-3990" href="http://saucelabs.com/blog/index.php/2011/05/why-css-locators-are-the-way-to-go-vs-xpath/screen-shot-2011-05-16-at-2-49-24-pm/"><img class="aligncenter size-large wp-image-3990" title="Screen shot 2011-05-16 at 2.49.24 PM" src="http://saucelabs.com/blog/wp-content/uploads/2011/05/Screen-shot-2011-05-16-at-2.49.24-PM-600x205.png" alt="" width="450" height="153" /></a></p>
<p>To underscore this even further, he also recorded a video in <a href="http://saucelabs.com/ondemand">Sauce OnDemand</a> that uses one heck of a cute kitten to illustrate just how <em>slow</em> XPath can be. The cat&#8217;s paw movements represent the test clicking through the different locators. The first batch of clicks uses CSS Locators and completes in under 30 seconds. The second batch, the XPath one, continues on for another <strong>eight minutes</strong>. Eight minutes!</p>
<p><object id="player_api" width="500" height="349" type="application/x-shockwave-flash" data="/flowplayer/flowplayer-3.2.5.swf?0.32766646798700094" name="player_api"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="high" /><param name="cachebusting" value="true" /><param name="bgcolor" value="#000000" /><param name="flashvars" value="config={&quot;clip&quot;:{&quot;url&quot;:&quot;/jobs/8eca38f844ffbc91336eddefad84177e/video.flv&quot;,&quot;provider&quot;:&quot;streamer&quot;,&quot;autoPlay&quot;:false,&quot;autoBuffering&quot;:true},&quot;plugins&quot;:{&quot;streamer&quot;:{&quot;url&quot;:&quot;/flowplayer/flowplayer.pseudostreaming-3.2.5.swf&quot;},&quot;controls&quot;:{&quot;mute&quot;:false,&quot;volume&quot;:false,&quot;backgroundColor&quot;:&quot;rgba(0, 0, 0, 0.7)&quot;}},&quot;playerId&quot;:&quot;player&quot;,&quot;playlist&quot;:[{&quot;url&quot;:&quot;/jobs/8eca38f844ffbc91336eddefad84177e/video.flv&quot;,&quot;provider&quot;:&quot;streamer&quot;,&quot;autoPlay&quot;:false,&quot;autoBuffering&quot;:true}]}" /></object></p>
<p>During the rest of the presentation, Santi dives into writing both basic and more advanced CSS Locators. He also spends some time talking about when you <strong>shouldn&#8217;t</strong> use CSS Locators (yes, there are a few cases where it is not the right tool for the job). To see the talk in its entirety, check out the recording below. And if you&#8217;re thinking of switching over from XPath, but unsure of how to go about it, check out the nifty tool Santi wrote called <a href="https://github.com/santiycr/cssify">cssify</a>. It does the handy work of translating your XPaths to CSS automatically.</p>
<p><strong>Helpful links</strong><br />
View Santi&#8217;s <a href="http://dl.dropbox.com/u/129692/locators.html#0">Presentation Slides</a><br />
Follow him on <a href="http://twitter.com/santiycr">Twitter</a><br />
Follow Sauce on <a href="http://twitter.com/saucelabs">Twitter</a><br />
Join the <a href="http://meetup.com/seleniumsanfrancisco">San Francisco Selenium Meetup group</a>!</p>
<p><object width="560" height="349"><param name="movie" value="http://www.youtube.com/v/6vPu3TO6XZ4?fs=1&amp;hl=en_US" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="560" height="349" src="http://www.youtube.com/v/6vPu3TO6XZ4?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Enjoy!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsaucelabs.com%2Fblog%2Findex.php%2F2011%2F05%2Fwhy-css-locators-are-the-way-to-go-vs-xpath%2F&amp;title=Why%20CSS%20Locators%20are%20the%20way%20to%20go%20vs%20XPath" id="wpa2a_2"><img src="http://saucelabs.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://saucelabs.com/blog/index.php/2011/05/why-css-locators-are-the-way-to-go-vs-xpath/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Testing Your Mobile Apps with Selenium 2 and Frank</title>
		<link>http://saucelabs.com/blog/index.php/2011/03/testing-your-mobile-apps-with-selenium-2-and-frank/</link>
		<comments>http://saucelabs.com/blog/index.php/2011/03/testing-your-mobile-apps-with-selenium-2-and-frank/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 21:15:23 +0000</pubDate>
		<dc:creator>Ashley Wilson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Meetups]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[acceptance tests]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[frank]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Sauce Labs]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[selenium 2]]></category>
		<category><![CDATA[sfse]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://saucelabs.com/blog/?p=3508</guid>
		<description><![CDATA[In case you missed our last SF Selenium Meetup, check out video below of the two great presentations on mobile testing. Pete Hodgsen, a software consultant with Thoughtworks, discussed how to use Frank, a new testing framework he&#8217;s involved in developing, for automated acceptance testing of native iOS apps. Jason Huggins, creator of Selenium and [...]]]></description>
			<content:encoded><![CDATA[<p>In case you missed our last <a href="http://meetup.com/seleniumsanfrancisco">SF Selenium Meetup</a>, check out video below of the two great presentations on mobile testing.<a href="http://blog.thepete.net/"> Pete Hodgsen</a>, a software consultant with Thoughtworks, discussed how to use Frank, a new testing framework he&#8217;s involved in developing, for automated acceptance testing of native iOS apps. <a href="http://twitter.com/hugs">Jason Huggins</a>, creator of Selenium and co-founder of <a href="http://saucelabs.com/">Sauce Labs,</a> followed this by demoing how to test Android and iPhone applications using Selenium 2. </p>
<p>Many thanks to our friends at <a href="http://cotweet.com">CoTweet</a> for co-hosting and making this last meetup such a success! If you think your company might be interested in hosting a future meetup, please <a href="http://www.meetup.com/seleniumsanfrancisco/suggestion/">get in touch</a>. Our next meetup will be in early May at <a href="http://mozilla.org">Mozilla</a> (we&#8217;re skipping April because of the <a href="http://www.seleniumconf.com/">Selenium Conference</a> happening next week). Stay tuned for more details!</p>
<p><iframe title="YouTube video player" width="540" height="390" src="http://www.youtube.com/embed/8rwXvHL9sj8" frameborder="0" allowfullscreen></iframe></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsaucelabs.com%2Fblog%2Findex.php%2F2011%2F03%2Ftesting-your-mobile-apps-with-selenium-2-and-frank%2F&amp;title=Testing%20Your%20Mobile%20Apps%20with%20Selenium%202%20and%20Frank" id="wpa2a_4"><img src="http://saucelabs.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://saucelabs.com/blog/index.php/2011/03/testing-your-mobile-apps-with-selenium-2-and-frank/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>#SFSE Video: Selenium Problem Solving Sessions</title>
		<link>http://saucelabs.com/blog/index.php/2011/03/sfse-video-selenium-problem-solving-sessions/</link>
		<comments>http://saucelabs.com/blog/index.php/2011/03/sfse-video-selenium-problem-solving-sessions/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 23:11:13 +0000</pubDate>
		<dc:creator>Ashley Wilson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Meetups]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[Proxy Server]]></category>
		<category><![CDATA[Sauce Labs]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[sfse]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://saucelabs.com/blog/?p=3356</guid>
		<description><![CDATA[A new year of San Francisco Selenium Meetups got off to a great start with our February meetup, hosted by our friends at OPOWER. Attendees were treated to four different presentations by: Eric Allen, a developer at Sauce Labs, who spoke about the different ways you can (and should) use Selenium&#8217;s Proxy Server Dan Fabulich, [...]]]></description>
			<content:encoded><![CDATA[<p>A new year of <a href="http://meetup.com/seleniumsanfrancisco">San Francisco Selenium Meetups</a> got off to a great start with our February meetup, hosted by our friends at <a href="http://www.opower.com/">OPOWER</a>. Attendees were treated to four different presentations by:</p>
<ul>
<li><strong>Eric Allen</strong>, a developer at Sauce Labs, who spoke about the different ways you can (and should) use Selenium&#8217;s Proxy Server</li>
<li><strong>Dan Fabulich</strong>, Senior QA Engineer at Redfin, who shared a technique for using Selenium to automatically test files on a disk</li>
<li><strong>Lalitha Padubidri</strong>, Lead QA Engineer at Riverbed, who gave attendees a glimpse into the Python-based Selenium infrastructure that Riverbed has built out, and</li>
<li><strong>Alois Reitbauer</strong>, Technology Strategist at dynaTrace Software, who demonstrated how to integrate your Selenium tests with dynaTrace Ajax, a free tool that analyzes performance and functional problems.</li>
</ul>
<p>In case you missed the event, check out the video below for the full presentations. And if you haven&#8217;t joined the <a href="http://meetup.com/seleniumsanfrancisco">SF Selenium Meetup group</a>, well, get to it :) We meet once a month at different venues around the city to mingle, drink beer, eat pizza, and hear various presentations on Selenium. It&#8217;s not only a grand ol&#8217; time, but it&#8217;s free. Next meetup is March 16 at Co-tweet. Details to come soon.</p>
<p><iframe title="YouTube video player" width="500" height="390" src="http://www.youtube.com/embed/L7J4Q7TFiC0" frameborder="0" allowfullscreen></iframe></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsaucelabs.com%2Fblog%2Findex.php%2F2011%2F03%2Fsfse-video-selenium-problem-solving-sessions%2F&amp;title=%23SFSE%20Video%3A%20Selenium%20Problem%20Solving%20Sessions" id="wpa2a_6"><img src="http://saucelabs.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://saucelabs.com/blog/index.php/2011/03/sfse-video-selenium-problem-solving-sessions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>#SFSE Meetup: Selenium Lightning Talks at Sauce Labs</title>
		<link>http://saucelabs.com/blog/index.php/2011/01/sfse-meetup-selenium-lightning-talks-at-sauce-labs/</link>
		<comments>http://saucelabs.com/blog/index.php/2011/01/sfse-meetup-selenium-lightning-talks-at-sauce-labs/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 22:00:12 +0000</pubDate>
		<dc:creator>Ashley Wilson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Meetups]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[Lightning Talks]]></category>
		<category><![CDATA[Sauce Labs]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[sfse]]></category>

		<guid isPermaLink="false">http://saucelabs.com/blog/?p=2873</guid>
		<description><![CDATA[To round out an exciting year of #SFSE meetups, we invited members of the group to give lightning talks on a Selenium topic of their choice for our December meetup at Sauce Labs. Seven brave people took to the stage and the resulting meetup was, as hoped for, memorable, entertaining, and enlightening (I, for one, [...]]]></description>
			<content:encoded><![CDATA[<p>To round out an exciting year of <a href="http://meetup.com/seleniumsanfrancisco">#SFSE meetups</a>, we invited members of the group to give lightning talks on a Selenium topic of their choice for our December meetup at <a href="http://saucelabs.com">Sauce Labs</a>. </p>
<p>Seven brave people took to the stage and the resulting meetup was, as hoped for, memorable, entertaining, and enlightening (I, for one, never knew Selenium could be used so creatively for non-testing purposes!). In case you missed it, check out the video below to see how members of the growing Selenium community are taking advantage of the testing framework. </p>
<p>We&#8217;ve got another great year of meetups planned, so if you&#8217;re in the Bay Area, consider joining the<a href="http://www.meetup.com/seleniumsanfrancisco/"> San Francisco Selenium meetup group</a>. We hold free monthly meetups in and around the city, and it&#8217;s a great chance to geek out with other Selenium enthusiasts :) Hope to see you at a meetup soon!</p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="287" id="viddler_34a5cf8a"><param name="movie" value="http://www.viddler.com/player/34a5cf8a/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/34a5cf8a/" width="437" height="287" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_34a5cf8a"></embed></object></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsaucelabs.com%2Fblog%2Findex.php%2F2011%2F01%2Fsfse-meetup-selenium-lightning-talks-at-sauce-labs%2F&amp;title=%23SFSE%20Meetup%3A%20Selenium%20Lightning%20Talks%20at%20Sauce%20Labs" id="wpa2a_8"><img src="http://saucelabs.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://saucelabs.com/blog/index.php/2011/01/sfse-meetup-selenium-lightning-talks-at-sauce-labs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>#SFSE Meetup: Cloud Testing At Salesforce &amp; Selenium 2 Update</title>
		<link>http://saucelabs.com/blog/index.php/2010/11/sfse-meetup-cloud-testing-at-salesforce-selenium-2-update/</link>
		<comments>http://saucelabs.com/blog/index.php/2010/11/sfse-meetup-cloud-testing-at-salesforce-selenium-2-update/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 22:03:51 +0000</pubDate>
		<dc:creator>Ashley Wilson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Meetups]]></category>
		<category><![CDATA[automated]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[salesforce]]></category>
		<category><![CDATA[selenium 2]]></category>
		<category><![CDATA[sfse]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://saucelabs.com/blog/?p=2643</guid>
		<description><![CDATA[Here are videos from another great San Francisco Selenium Meetup. Chris Chen, of Salesforce, gave attendees a special look in to how Salesforce automates testing in the cloud, and Eran Messeri, a core Selenium committer at Google, shared a new API for Selenium 2. Check &#8216;em out! How Salesforce Tests in the Cloud with Chris [...]]]></description>
			<content:encoded><![CDATA[<p>Here are videos from another great<a href="http://meetup.com/seleniumsanfrancisco"> San Francisco Selenium Meetup.</a> Chris Chen, of Salesforce, gave attendees a special look in to how Salesforce automates testing in the cloud, and Eran Messeri, a core Selenium committer at Google, shared a new API for Selenium 2. </p>
<p>Check &#8216;em out!</p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="287" id="viddler_d0502488"><param name="movie" value="http://www.viddler.com/player/d0502488/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/d0502488/" width="437" height="287" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_d0502488"></embed></object><br />
How Salesforce Tests in the Cloud with Chris Chen</p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="287" id="viddler_e4e5429e"><param name="movie" value="http://www.viddler.com/player/e4e5429e/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/e4e5429e/" width="437" height="287" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_e4e5429e"></embed></object><br />
Selenium 2 API &#038; Interactions with Eran Messeri</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsaucelabs.com%2Fblog%2Findex.php%2F2010%2F11%2Fsfse-meetup-cloud-testing-at-salesforce-selenium-2-update%2F&amp;title=%23SFSE%20Meetup%3A%20Cloud%20Testing%20At%20Salesforce%20%26%23038%3B%20Selenium%202%20Update" id="wpa2a_10"><img src="http://saucelabs.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://saucelabs.com/blog/index.php/2010/11/sfse-meetup-cloud-testing-at-salesforce-selenium-2-update/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>#SFSE Video: Selenium Best Practices with Jason Huggins</title>
		<link>http://saucelabs.com/blog/index.php/2010/09/sfse-video-selenium-best-practices-with-jason-huggins/</link>
		<comments>http://saucelabs.com/blog/index.php/2010/09/sfse-video-selenium-best-practices-with-jason-huggins/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 00:47:34 +0000</pubDate>
		<dc:creator>Ashley Wilson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Meetups]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[Cross Browser]]></category>
		<category><![CDATA[sauce ondemand]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[sfse]]></category>

		<guid isPermaLink="false">http://saucelabs.com/blog/?p=1779</guid>
		<description><![CDATA[If you&#8217;re a regular reader of this blog, you&#8217;ve no doubt seen posts about the San Francisco Selenium Meetup group. Organized by Sauce Labs, we invite speakers to present to our enthused attendees once a month on a variety of topics, including integrating Hudson with Selenium, adopting the Page-Model Framework, and using Robot Framework to [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a regular reader of this blog, you&#8217;ve no doubt seen posts about the<a href="http://meetup.com/seleniumsanfrancisco"> San Francisco Selenium Meetup</a> group. Organized by Sauce Labs, we invite speakers to present to our enthused attendees once a month on a variety of topics, including <a href="http://saucelabs.com/blog/index.php/2010/07/sfse-meetup-videos-hudson-with-selenium-sauce-ondemand/">integrating Hudson with Selenium</a>, adopting the <a href="http://saucelabs.com/blog/index.php/2010/06/519-meetup-videos-how-mozilla-and-linkedin-use-selenium/">Page-Model Framework</a>, and using <a href="http://saucelabs.com/blog/index.php/2010/04/highlights-from-our-april-20th-selenium-testing-tools-demo-night/">Robot Framework to drive your Selenium tests</a>.</p>
<p>For this last meetup, we were <em>particularly</em> excited about our speaker since he&#8217;s the creator of Selenium and an original Saucier. Jason Huggins, co-founder of <a href="http://saucelabs.com">Sauce Labs</a>, joined us at LinkedIn in what could only be described as a &#8220;QA session on steroids.&#8221; Watch the video below to hear Jason&#8217;s take on things, including the topic on everyone&#8217;s mind, Selenium 2.0. </p>
<p>Our next meetup is Sept. 29 at Trulia. Davis W. Frank, of Pivotal Labs, will discuss Jasmine + Selenium, so <a href="http://meetup.com/seleniumsanfrancisco">make sure to join #SFSE today</a>! </p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="287" id="viddler_9dfc5a96"><param name="movie" value="http://www.viddler.com/player/9dfc5a96/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/9dfc5a96/" width="437" height="287" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_9dfc5a96"></embed></object></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsaucelabs.com%2Fblog%2Findex.php%2F2010%2F09%2Fsfse-video-selenium-best-practices-with-jason-huggins%2F&amp;title=%23SFSE%20Video%3A%20Selenium%20Best%20Practices%20with%20Jason%20Huggins" id="wpa2a_12"><img src="http://saucelabs.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://saucelabs.com/blog/index.php/2010/09/sfse-video-selenium-best-practices-with-jason-huggins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SFSE Whiteboard Night a Success!</title>
		<link>http://saucelabs.com/blog/index.php/2010/07/sfse-whiteboard-night-a-success/</link>
		<comments>http://saucelabs.com/blog/index.php/2010/07/sfse-whiteboard-night-a-success/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 01:12:12 +0000</pubDate>
		<dc:creator>Ashley Wilson</dc:creator>
				<category><![CDATA[Meetups]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[sfse]]></category>

		<guid isPermaLink="false">http://saucelabs.com/blog/?p=1425</guid>
		<description><![CDATA[The San Francisco Selenium Meetup Group gathered last week for a meetup at Digg’s headquarters, and WOW! What a fantastic night it was. In the hopes of learning how members were specifically using Selenium, and to foster informal conversations around this, we decided to have &#8220;Whiteboard Night,&#8221; where we invited #SFSE members to volunteer to [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://meetup.com/seleniumsanfrancisco">San Francisco Selenium Meetup Group</a> gathered last week for a meetup at<a href="http://digg.com/"> Digg’s</a> headquarters, and WOW! What a <em>fantastic</em> night it was.</p>
<p>In the hopes of learning how members were specifically using Selenium, and to foster informal conversations around this, we decided to have &#8220;Whiteboard Night,&#8221; where we invited <a href="http://meetup.com/seleniumsanfrancisco">#SFSE members</a> to volunteer to share their Selenium testing structures, philosophies, best practices, etc. The setup was similar to a poster session, with different “whiteboarders” presenting 5-10 minute sessions simultaneously and then engaging in organic discussions with the &#8220;minglers&#8221; who circled the room. </p>
<p>With 70+ plus attendees and 10 great whiteboarders from companies such as Mozilla, Pivotal Labs, and PB Works (to name a few), the conversations that resulted were <em>highly</em> thought-provoking. Most whiteboarders shared their existing test structures, while others proposed new ideas to get feedback from the group. Even <a href="http://saucelabs.com">Sauce Labs</a> made an impromptu whiteboard visit, with Developer Miki Tebeka sketching out our testing system. </p>
<p>The responses afterwards were widely enthusiastic, with one newcomer to the group writing on the meetup page: “Awesome event! Great to talk to folks working &#8216;in the trenches.&#8217;&#8221; </p>
<p>With the success of Whiteboard Night, we&#8217;d <strong>love</strong> to have more in the future. We just need a big enough space to make it happen. If you think your company would be interested in hosting Whiteboard Night, please let us know. (To note: Digg&#8217;s digs were perfect. Plenty of open room, multiple whiteboards, and a huge fridge to store our beer :-) Thanks, guys!).  </p>
<p>If you haven&#8217;t joined the <a href="http://meetup.com/seleniumsanfrancisco">#SFSE meetup group</a>, please do so, as it&#8217;s the best way to stay in the loop. Next meetup is August 24 at LinkedIn &#8211; details coming soon.</p>
<p> Below are some photos from Whiteboard Night. For more, check out our new Sauce Labs <a href="http://flickr.com/photos/saucelabs">Flickr Page</a>. We&#8217;ll hope to see YOU at the next one!<br />
<a href="http://www.flickr.com/photos/saucelabs/4832826108/" title="IMG_9945 by Sauce Labs, on Flickr"><img src="http://farm5.static.flickr.com/4104/4832826108_baecfb096c.jpg" width="500" height="333" alt="IMG_9945" /></a></p>
<p><a href="http://www.flickr.com/photos/saucelabs/4832830512/" title="IMG_9960 by Sauce Labs, on Flickr"><img src="http://farm5.static.flickr.com/4154/4832830512_c87a6efbd2.jpg" width="500" height="333" alt="IMG_9960" /></a></p>
<p><a href="http://www.flickr.com/photos/saucelabs/4832827980/" title="IMG_9946 copy by Sauce Labs, on Flickr"><img src="http://farm5.static.flickr.com/4144/4832827980_c9d58d2ceb.jpg" width="500" height="333" alt="IMG_9946 copy" /></a></p>
<p><a href="http://www.flickr.com/photos/saucelabs/4832829762/" title="IMG_9957 by Sauce Labs, on Flickr"><img src="http://farm5.static.flickr.com/4105/4832829762_62b4fa8606.jpg" width="500" height="333" alt="IMG_9957" /></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsaucelabs.com%2Fblog%2Findex.php%2F2010%2F07%2Fsfse-whiteboard-night-a-success%2F&amp;title=SFSE%20Whiteboard%20Night%20a%20Success%21" id="wpa2a_14"><img src="http://saucelabs.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://saucelabs.com/blog/index.php/2010/07/sfse-whiteboard-night-a-success/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>#SFSE Meetup Videos: Hudson with Selenium + Sauce OnDemand</title>
		<link>http://saucelabs.com/blog/index.php/2010/07/sfse-meetup-videos-hudson-with-selenium-sauce-ondemand/</link>
		<comments>http://saucelabs.com/blog/index.php/2010/07/sfse-meetup-videos-hudson-with-selenium-sauce-ondemand/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 18:16:35 +0000</pubDate>
		<dc:creator>Ashley Wilson</dc:creator>
				<category><![CDATA[Meetups]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[Continuous Integration]]></category>
		<category><![CDATA[Hudson]]></category>
		<category><![CDATA[sauce ondemand]]></category>
		<category><![CDATA[sfse]]></category>

		<guid isPermaLink="false">http://saucelabs.com/blog/?p=1338</guid>
		<description><![CDATA[At our last #SFSE meetup at StumbleUpon, Kohsuke Kawaguchi, the creator of Hudson, gave a fantastic presentation on Hudson and the integrations with Selenium. He also unveiled a new Hudson plugin for Sauce OnDemand, documented here in an earlier blog post. Hudson is an easy-to-use, open-source Continuous Integration (CI) server that supports distributed builds and [...]]]></description>
			<content:encoded><![CDATA[<p>At our last <a href="http://meetup.com/seleniumsanfrancisco">#SFSE meetup</a> at <a href="http://www.stumbleupon.com/">StumbleUpon</a>, Kohsuke Kawaguchi, the creator of Hudson, gave a fantastic presentation on Hudson and the integrations with Selenium. He also unveiled a new Hudson plugin for Sauce OnDemand, documented <a href="http://saucelabs.com/blog/index.php/2010/07/kohsuke-kawaguchi-announces-new-hudson-plug-in-for-sauce-ondemand/">here</a> in an earlier blog post.  </p>
<p>Hudson is an easy-to-use, open-source Continuous Integration (CI) server that supports distributed builds and multiple extensions, including those for Selenium. The first video below gives background on Hudson, the reasons for its development, and the features included. The second two videos walk you through using the <a href="http://wiki.hudson-ci.org/display/HUDSON/Sauce+OnDemand+Plugin">Hudson Sauce OnDemand plugin</a>, which makes the Hudson &#038; Selenium integrations quicker and easier to utilize. </p>
<p>If you&#8217;d like to see this presentation in its entirety, check out our <a href="http://www.youtube.com/saucelabs">Sauce Labs YouTube</a> channel. Thanks again to our friends at StumbleUpon for providing a great space for us to use for the event. To hear these talks in person, join our <a href="http://meetup.com/seleniumsanfrancisco">Selenium meetup</a> group. We generally host meetups once a month around the Bay Area, featuring different Selenium topics and speakers, so join in the conversation!</p>
<p><strong>Hudson Background:</strong><br />
<object width="550" height="385"><param name="movie" value="http://www.youtube.com/v/93m2m3NTJjA&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/93m2m3NTJjA&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="385"></embed></object></p>
<p><strong>Sauce OnDemand Plugin:</strong><br />
<object width="550" height="385"><param name="movie" value="http://www.youtube.com/v/flFKeZ2yMqQ&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/flFKeZ2yMqQ&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="385"></embed></object></p>
<p><object width="550" height="385"><param name="movie" value="http://www.youtube.com/v/Hqo_hSHwTEY&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Hqo_hSHwTEY&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="385"></embed></object></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsaucelabs.com%2Fblog%2Findex.php%2F2010%2F07%2Fsfse-meetup-videos-hudson-with-selenium-sauce-ondemand%2F&amp;title=%23SFSE%20Meetup%20Videos%3A%20Hudson%20with%20Selenium%20%2B%20Sauce%20OnDemand" id="wpa2a_16"><img src="http://saucelabs.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://saucelabs.com/blog/index.php/2010/07/sfse-meetup-videos-hudson-with-selenium-sauce-ondemand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Continuous Try Server Integration</title>
		<link>http://saucelabs.com/blog/index.php/2009/12/continuous-try-server-integration/</link>
		<comments>http://saucelabs.com/blog/index.php/2009/12/continuous-try-server-integration/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 11:24:14 +0000</pubDate>
		<dc:creator>John Dunham</dc:creator>
				<category><![CDATA[Selenium Knowledge]]></category>
		<category><![CDATA[Continuous Integration]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[sfse]]></category>

		<guid isPermaLink="false">http://saucelabs.com/blog/?p=292</guid>
		<description><![CDATA[Collin Jackson of Betable talks about their successful use of &#8220;Continuous Try Server Integration&#8221; using Selenium together with Sauce OnDemand cloud-hosted Selenium service.]]></description>
			<content:encoded><![CDATA[<p>Collin Jackson of Betable talks about their successful use of &#8220;Continuous Try Server Integration&#8221; using Selenium together with Sauce OnDemand cloud-hosted Selenium service.</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/nI0IQg82ONc&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nI0IQg82ONc&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsaucelabs.com%2Fblog%2Findex.php%2F2009%2F12%2Fcontinuous-try-server-integration%2F&amp;title=Continuous%20Try%20Server%20Integration" id="wpa2a_18"><img src="http://saucelabs.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://saucelabs.com/blog/index.php/2009/12/continuous-try-server-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Reasons to Use Selenium</title>
		<link>http://saucelabs.com/blog/index.php/2009/12/top-10-reasons-to-use-selenium/</link>
		<comments>http://saucelabs.com/blog/index.php/2009/12/top-10-reasons-to-use-selenium/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 05:46:59 +0000</pubDate>
		<dc:creator>John Dunham</dc:creator>
				<category><![CDATA[Featured Posts]]></category>
		<category><![CDATA[Selenium Knowledge]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[sfse]]></category>

		<guid isPermaLink="false">http://saucelabs.com/blog/?p=283</guid>
		<description><![CDATA[Last week we hosted the December edition of the San Francisco Selenium Meetup. Chosen topic of the evening was &#8220;Selenium-related lightning talks&#8221; with some delightful results. Amit Kumar of Betable presents &#8220;Top 10 Reasons to Use Selenium.&#8221; Enjoy!]]></description>
			<content:encoded><![CDATA[<p>Last week we hosted the December edition of the San Francisco Selenium Meetup.  Chosen topic of the evening was &#8220;Selenium-related lightning talks&#8221; with some delightful results.  Amit Kumar of Betable presents &#8220;Top 10 Reasons to Use Selenium.&#8221;  Enjoy!</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/AayvaDDAu0s&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/AayvaDDAu0s&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsaucelabs.com%2Fblog%2Findex.php%2F2009%2F12%2Ftop-10-reasons-to-use-selenium%2F&amp;title=Top%2010%20Reasons%20to%20Use%20Selenium" id="wpa2a_20"><img src="http://saucelabs.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://saucelabs.com/blog/index.php/2009/12/top-10-reasons-to-use-selenium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

