<?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>Cloud Testing Blog &#187; Selenium</title>
	<atom:link href="http://www.cloudtesting.com/blog/category/testing-frameworks/selenium-testing-frameworks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cloudtesting.com/blog</link>
	<description>Automated Functional, Cross Browser and Load Testing for Websites</description>
	<lastBuildDate>Tue, 23 Aug 2011 18:41:02 +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>Selenium Documentation</title>
		<link>http://www.cloudtesting.com/blog/2010/01/28/selenium-documentation/</link>
		<comments>http://www.cloudtesting.com/blog/2010/01/28/selenium-documentation/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 22:24:30 +0000</pubDate>
		<dc:creator>Matt Rees - Cloud Testing</dc:creator>
				<category><![CDATA[Selenium]]></category>
		<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://www.cloudtesting.com/blog/?p=1283</guid>
		<description><![CDATA[We have uploaded some Selenium documentation to www.cloudtesting.com/selenium-docs/ You can also view it at selenium.cloudtesting.com/ and of course it available from seleniumhq.org]]></description>
			<content:encoded><![CDATA[<p>We have uploaded some Selenium documentation to <a href="http://www.cloudtesting.com/selenium-docs/">www.cloudtesting.com/selenium-docs/</a></p>
<p>You can also view it at <a href="http://selenium.cloudtesting.com/">selenium.cloudtesting.com/</a> and of course it available from <a href="http://seleniumhq.org">seleniumhq.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudtesting.com/blog/2010/01/28/selenium-documentation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Processing Javascript with Selenium</title>
		<link>http://www.cloudtesting.com/blog/2009/12/03/processing-javascript-with-selenium/</link>
		<comments>http://www.cloudtesting.com/blog/2009/12/03/processing-javascript-with-selenium/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 10:34:49 +0000</pubDate>
		<dc:creator>Matt Rees - Cloud Testing</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[Selenium RC]]></category>

		<guid isPermaLink="false">http://www.cloudtesting.com/blog/?p=1042</guid>
		<description><![CDATA[To allow you to create dynamic testing scripts, i.e. ones where the information entered onto forms, such as dates change over time, Cloud Testing has implemented the processing of JavaScript. Stored Variables The commands store, storeValue and storeText can be used to store a variable value for later. Store javascript{var d=new Date(); d.toString()} dateToday Store [...]]]></description>
			<content:encoded><![CDATA[<p>To allow you to create dynamic testing scripts, i.e. ones where the information entered onto forms, such as dates change over time, Cloud Testing has implemented the processing of JavaScript.</p>
<h2>Stored Variables</h2>
<p>The commands <em>store</em>, <em>storeValue</em> and <em>storeText</em> can be used to store a variable value for later.</p>
<table style="height: 154px;" border="1" width="637">
<colgroup>
<col width="18%"></col>
<col width="36%"></col>
<col width="45%"></col>
</colgroup>
<tbody>
<tr>
<td>Store</td>
<td><span id="showArg1_2">javascript{var d=new Date(); d.toString()} </span></td>
<td><span id="showArg2_2">dateToday </span></td>
</tr>
<tr>
<td>Store</td>
<td><span id="showArg1_3">javascript{var d=new Date(); d.setDate(d.getDate() + 1); d.toDateString();}</span></td>
<td><span id="showArg2_3">dateTomorrow </span></td>
</tr>
<tr>
<td>Store</td>
<td><span id="showArg1_4">javascript{var d=new Date(); d.setDate(d.getDate() + 40); d.toDateString();} </span></td>
<td>date40days</td>
</tr>
<tr>
<td>Store</td>
<td>Plain text string</td>
<td>variableName</td>
</tr>
</tbody>
</table>
<p>These variables are stored internally in a map called &#8220;storedVars&#8221;, with values keyed by the variable name, which can be accessed as follows:</p>
<pre style="padding-left: 30px;">storedVars['date40days']</pre>
<h2>JavaScript</h2>
<p>All parameters or arguments for Selenium commands can be constructed using both simple 	variable substitution as well as full JavaScript. They both have access to the variables stored above, but in different ways:</p>
<h3>Full JavaScript &#8211; javascript{&#8230;}</h3>
<p>Javascript evaluation provides the full power of JavaScript when constructing a parameter or argument for a Selenium command. 	To use this mechanism, the <em>entire</em> parameter value must be prefixed by &#8216;javascript{&#8216; with a trailing &#8216;}&#8217;. The text inside the braces is evaluated as a JavaScript expression, and can access previously stored variables using the <em>storedVars</em> map detailed above.</p>
<p>Note that variable substitution cannot be combined with JavaScript evaluation.</p>
<table style="height: 154px;" border="1" width="638">
<colgroup>
<col width="18%"></col>
<col width="36%"></col>
<col width="45%"></col>
</colgroup>
<tbody>
<tr>
<td>Echo</td>
<td><span id="showArg1_16">javascript{storedVars['dateTomorrow']} </span></td>
<td></td>
</tr>
<tr>
<td>Type</td>
<td>textField</td>
<td><span id="showArg1_16">javascript{&#8216;Tomorrow=&#8217; + storedVars['dateTomorrow']} </span></td>
</tr>
<tr>
<td>Echo</td>
<td><span id="showArg1_16">javascript{&#8216;Tomorrow=&#8217; + storedVars['dateTomorrow']} </span></td>
<td></td>
</tr>
<tr>
<td>Type</td>
<td>fullName</td>
<td>javascript{storedVars['fullName'].toUpperCase()}</td>
</tr>
</tbody>
</table>
<h3>Simple variable substitution &#8211; ${&#8230;}</h3>
<p>Variable substitution provides a simple way to use a previously stored variable in a command parameter. The variable to substitute is indicated by ${variableName}. Multiple variables can be substituted, and intermixed with static text.</p>
<table style="height: 154px;" border="1" width="634">
<colgroup>
<col width="18%"></col>
<col width="36%"></col>
<col width="45%"></col>
</colgroup>
<tbody>
<tr>
<td>Echo</td>
<td>${dateTomorrow}</td>
<td></td>
</tr>
<tr>
<td>Type</td>
<td>textField</td>
<td><span id="showArg2_13">Today: ${dateToday} Tomorrow: ${dateTomorrow} </span></td>
</tr>
<tr>
<td>Echo</td>
<td>${variableName}</td>
<td></td>
</tr>
<tr>
<td>Type</td>
<td>fullName</td>
<td>$(title} ${firstName} ${lastName}</td>
</tr>
</tbody>
</table>
<h2>Example in Cloud Testing</h2>
<p>The following example from Cloud Testing shows what can be done.</p>
<p><img class="alignnone size-full wp-image-1082" style="border: 1px solid black;" title="JavaScript - settings" src="http://www.cloudtesting.com/blog/wp-content/uploads/2009/12/JavaScript-settings.png" alt="JavaScript - settings" width="693" height="518" /></p>
<p>The example script is available to view in the &#8216;Live Demo&#8217; account is available via the <a href="http://www.cloudtesting.com/live_demo.php">Online demo</a> page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudtesting.com/blog/2009/12/03/processing-javascript-with-selenium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selecting which browser to use for Selenium test in Cloud Testing</title>
		<link>http://www.cloudtesting.com/blog/2009/12/01/selecting-which-browser-to-use-for-selenium-test-in-cloud-testing/</link>
		<comments>http://www.cloudtesting.com/blog/2009/12/01/selecting-which-browser-to-use-for-selenium-test-in-cloud-testing/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 16:15:51 +0000</pubDate>
		<dc:creator>Matt Rees - Cloud Testing</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Cloud Testing]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[browser]]></category>

		<guid isPermaLink="false">http://www.cloudtesting.com/blog/?p=1032</guid>
		<description><![CDATA[Cloud Testing have just released a new feature, which allows you to choose which of the available browsers you would like to run your test / Selenium script with. Once you have clicked on the &#8216;Test&#8217; button, the following dialog appears: If you are happy with the default browser for this project &#8211; in this [...]]]></description>
			<content:encoded><![CDATA[<p>Cloud Testing have just released a new feature, which allows you to choose which of the available browsers you would like to run your test / Selenium script with.</p>
<p>Once you have clicked on the &#8216;Test&#8217; button, the following dialog appears:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1033" style="border: 1px solid black;" title="Select browser" src="http://www.cloudtesting.com/blog/wp-content/uploads/2009/12/Select-browser.png" alt="Select browser" width="490" height="250" /></p>
<p style="text-align: left;">If you are happy with the default browser for this project &#8211; in this case Internet Explorer 7, all you have to do is click &#8216;Run Test&#8217;.</p>
<p style="text-align: left;">If you would like to choose the browser to use, you can choose from the drop down list:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1034" style="border: 1px solid black;" title="Select browser 2" src="http://www.cloudtesting.com/blog/wp-content/uploads/2009/12/Select-browser-2.png" alt="Select browser 2" width="493" height="435" /></p>
<p style="text-align: left;">If you are running a Private Cloud Testing Agent (which allows you to test websites and applications inside your firewall), you will be presented with the browsers available on that, otherwise you will have access to all those supported by Cloud Testing:</p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-617" title="Internet Explorer browser" src="http://www.cloudtesting.com/blog/wp-content/uploads/2009/08/icon_lg_browser_ie.png" alt="Internet Explorer browser" width="48" height="48" />Internet Explorer ( 6, 7 &amp; 8 )</p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-487" title="Firefox browser" src="http://www.cloudtesting.com/blog/wp-content/uploads/2009/07/icon_lg_browser_ff.gif" alt="Firefox browser" width="48" height="48" />Firefox ( 2, 3 &amp; 3.5)</p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-460" title="Safari browser" src="http://www.cloudtesting.com/blog/wp-content/uploads/2009/07/icon_lg_browser_safari.gif" alt="Safari browser" width="48" height="48" />Safari (3.2 &amp; 4.0)</p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-618" title="Opera browser" src="http://www.cloudtesting.com/blog/wp-content/uploads/2009/08/icon_lg_browser_opera.png" alt="Opera browser" width="48" height="48" />Opera (9.6 &amp; 10.0)</p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-616" title="Chrome  browser" src="http://www.cloudtesting.com/blog/wp-content/uploads/2009/08/icon_lg_browser_chrome.png" alt="Chrome  browser" width="48" height="48" />Google Chrome (2.0 &amp; 3.0)</p>
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://www.cloudtesting.com/blog/2009/12/01/selecting-which-browser-to-use-for-selenium-test-in-cloud-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox updated on Cloud Agents &#8211; 3.0.15, 3.5.4 and 3.6 Beta 1</title>
		<link>http://www.cloudtesting.com/blog/2009/11/01/firefox-updated-on-cloud-agents-3-0-15-3-5-4-and-3-6-beta-1/</link>
		<comments>http://www.cloudtesting.com/blog/2009/11/01/firefox-updated-on-cloud-agents-3-0-15-3-5-4-and-3-6-beta-1/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 10:00:59 +0000</pubDate>
		<dc:creator>Phil Smith - Cloud Testing</dc:creator>
				<category><![CDATA[Cloud Testing]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[Firefox 3.0.15]]></category>
		<category><![CDATA[firefox 3.5.4]]></category>
		<category><![CDATA[Firefox 3.6 beta]]></category>

		<guid isPermaLink="false">http://blog.cloudtesting.com/?p=878</guid>
		<description><![CDATA[All of our Cloud Testing Agents have been updated with the latest releases of Firefox, i.e. 3.0.15 for the 3.0 release and 3.5.4 for the 3.5 release. Version 2.0.0.20 remains available for those requiring a test on 2.0. The Beta 1 release of the 3.6 browser has also been added to a number of agents [...]]]></description>
			<content:encoded><![CDATA[<p>All of our Cloud Testing Agents have been updated with the latest releases of Firefox, i.e. 3.0.15 for the 3.0 release and 3.5.4 for the 3.5 release.</p>
<p>Version 2.0.0.20 remains available for those requiring a test on 2.0.</p>
<p>The Beta 1 release of the 3.6 browser has also been added to a number of agents to allow testing with it using the Cloud Testing service.</p>
<p>For full details of the Functional and Cross Browser testing services available from Cloud Testing, visit the website at <a href="http://www.cloudtesting.com/">http://www.cloudtesting.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudtesting.com/blog/2009/11/01/firefox-updated-on-cloud-agents-3-0-15-3-5-4-and-3-6-beta-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3.6 Beta 1 is now available for download</title>
		<link>http://www.cloudtesting.com/blog/2009/10/31/firefox-3-6-beta-1-is-now-available-for-download/</link>
		<comments>http://www.cloudtesting.com/blog/2009/10/31/firefox-3-6-beta-1-is-now-available-for-download/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 20:41:50 +0000</pubDate>
		<dc:creator>cloudtesting</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[Selenium IDE]]></category>
		<category><![CDATA[Cloud Testing]]></category>
		<category><![CDATA[Firefox 3.6]]></category>

		<guid isPermaLink="false">http://blog.cloudtesting.com/?p=874</guid>
		<description><![CDATA[The following posting on the Mozilla developer news (https://developer.mozilla.org/devnews/index.php/2009/10/30/firefox-3-6-beta-1-is-now-available-for-download/) announces 3.6 beta 1 of Firefox: The Mozilla community is proud to release Firefox 3.6 Beta 1 for download. This beta version of the next version of Firefox is built on the Gecko 1.9.2 web rendering engine, containing many improvements for web developers, Add-on developers, and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-814" title="icon_lg_browser_ff" src="http://cloudtesting.files.wordpress.com/2009/10/icon_lg_browser_ff.png" alt="icon_lg_browser_ff" width="48" height="48" /></p>
<p>The following posting on the Mozilla developer news (<a href="https://developer.mozilla.org/devnews/index.php/2009/10/30/firefox-3-6-beta-1-is-now-available-for-download/">https://developer.mozilla.org/devnews/index.php/2009/10/30/firefox-3-6-beta-1-is-now-available-for-download/</a>) announces 3.6 beta 1 of Firefox:</p>
<blockquote><p>The Mozilla community is proud to release Firefox 3.6 Beta 1  for download. This <em>beta version</em> of the next version of Firefox  is built on the Gecko 1.9.2 web rendering engine, containing many  improvements for web developers, Add-on         developers, and users.  The Mozilla community appreciates your feedback and assistance     in  testing this preview of the next version of Firefox. Your beta  software      will update itself periodically, and eventually will be updated to   the final     release itself.</p>
<p>This first revision of the Beta of Firefox 3.6 / Gecko 1.9.2  introduces several new   features:</p>
<ul>
<li>Users can now change their browser’s appearance with a single click,   with built in support for <a href="http://www.getpersonas.com/">Personas</a>.</li>
<li>Firefox 3.6 will <a href="http://theunfocused.net/2009/10/06/firefox-3-6-knows-when-your-plugins-are-out-of-date/">alert   users about out of date plugins</a> to keep them safe.</li>
<li>Open, native video can now be displayed <a href="http://mozillalinks.org/wp/2009/10/firefox-3-6-gets-full-screen-native-video/">full   screen</a>, and supports <a href="https://developer.mozilla.org/En/HTML/Element/Video">poster frames</a>.</li>
<li>Support for the <a href="http://hacks.mozilla.org/2009/10/woff/">WOFF  font format</a>.</li>
<li>Improved JavaScript performance, overall browser  responsiveness and  startup time.</li>
<li>Support for new CSS, DOM and HTML5 web technologies.</li>
</ul>
<p>Web developers and Add-on developers should read more detail about <a href="http://developer.mozilla.org/en/docs/Firefox_3.6_for_developers">the  many new features in Firefox  3.6 for developers</a> on the Mozilla  Developer Center. For the full list of changes since the <a href="http://www.mozilla.org/projects/firefox/3.6a1/releasenotes/">alpha  release</a>, see <a href="https://bugzilla.mozilla.org/buglist.cgi?quicksearch=ALL%20status1.9.2%3Abeta1-fixed">this  list</a> (it’s big).</p>
<p>Please use the following links to download Firefox 3.6 Beta, or visit  the <a href="http://www.mozilla.com/firefox/all-beta.html">beta  download page</a>:</p>
<ul>
<li>Windows: <a href="http://download.mozilla.org/?product=firefox-3.6b1&amp;os=win&amp;lang=en-US">Firefox   3.6 Beta 1 Setup.exe</a></li>
<li>Mac OS X: <a href="http://download.mozilla.org/?product=firefox-3.6b1&amp;os=osx&amp;lang=en-US">Firefox   3.6 Beta 1.dmg</a></li>
<li>Linux: <a href="http://download.mozilla.org/?product=firefox-3.6b1&amp;os=linux&amp;lang=en-US">firefox-3.6b1.tar.bz2</a></li>
</ul>
<p>At this time most Add-ons have not yet been upgraded by their authors  to be compatible with Firefox 3.6 Beta. If you wish to help test your  Add-ons, please also download and install the <a href="https://addons.mozilla.org/addon/15003?src=external-fxbetarelnote">Add-on  Compatibility Reporter</a> – your favorite Add-on author will  appreciate it!</p></blockquote>
<p>The release can be downloaded from <a href="http://www.mozilla.com/en-US/firefox/all-beta.html">http://www.mozilla.com/en-US/firefox/all-beta.html</a></p>
<p>Cloud Testing has added support for 3.6 Beta to it&#8217;s Functional and Cross Browser testing service, which allows users to upload and run their Selenium IDE scripts, capturing screen-shots, HTML, components and timings. Tests can be initiated via an API or via the web portal.</p>
<p>&nbsp;</p>
<p>See the Cloud Testing website at <a href="http://www.cloudtesting.com/">http://www.cloudtesting.com/</a> for more details.</p>
<p>&nbsp;</p>
<p>Subscribers can access the service at <a href="http://portal.cloudtesting.com/">http://portal.cloudtesting.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudtesting.com/blog/2009/10/31/firefox-3-6-beta-1-is-now-available-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>API to run your Selenium scripts on Cloud Testing servers now in beta</title>
		<link>http://www.cloudtesting.com/blog/2009/10/22/api-to-run-your-selenium-scripts-on-cloud-testing-servers-now-in-beta/</link>
		<comments>http://www.cloudtesting.com/blog/2009/10/22/api-to-run-your-selenium-scripts-on-cloud-testing-servers-now-in-beta/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 20:45:42 +0000</pubDate>
		<dc:creator>Phil Smith - Cloud Testing</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[Selenium IDE]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://blog.cloudtesting.com/?p=867</guid>
		<description><![CDATA[Cloud Testing has released a updated version of it’s Portal (http://portal.cloudtesting.com/) which now gives customers access to an API (Application Programming Interface). This will give users the ability to initiate tests on the Cloud Testing agents, as well as view the status of projects, scripts and results of individual tests in and XML format. Cloud [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-866" title="terminal" src="http://cloudtesting.files.wordpress.com/2009/10/terminal.png" alt="terminal" width="128" height="128" /></p>
<p>Cloud Testing has released a updated version of it’s Portal (<a href="http://portal.cloudtesting.com/">http://portal.cloudtesting.com/</a>) which now gives customers access to an API (Application Programming Interface). This will give users the ability to initiate tests on the Cloud Testing agents, as well as view the status of projects, scripts and results of individual tests in and XML format.</p>
<p>Cloud Testing allows users to run scripts captured with Selenium IDE in a selection of browsers, with full screen-shots and diagnostics recorded and stored for analysis. For full details of all the features, see <a href="http://www.cloudtesting.com/serviceFeaturesFunctional.php">http://www.cloudtesting.com/serviceFeaturesFunctional.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudtesting.com/blog/2009/10/22/api-to-run-your-selenium-scripts-on-cloud-testing-servers-now-in-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RSS Feed for script results and project status now in Beta</title>
		<link>http://www.cloudtesting.com/blog/2009/10/22/rss-feed-for-script-results-and-project-status-now-in-beta/</link>
		<comments>http://www.cloudtesting.com/blog/2009/10/22/rss-feed-for-script-results-and-project-status-now-in-beta/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 13:35:45 +0000</pubDate>
		<dc:creator>Phil Smith - Cloud Testing</dc:creator>
				<category><![CDATA[Cloud Testing]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[Selenium IDE]]></category>
		<category><![CDATA[cloud testting]]></category>
		<category><![CDATA[project status]]></category>
		<category><![CDATA[results]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[script status]]></category>

		<guid isPermaLink="false">http://blog.cloudtesting.com/?p=862</guid>
		<description><![CDATA[Cloud Testing has released a updated version of it&#8217;s Portal (http://portal.cloudtesting.com/) which gives customers the ability to view the status of both projects and scripts in an RSS feed. Cloud Testing allows users to run scripts captured with Selenium IDE in a selection of browsers, with full screen-shots and diagnostics recorded and stored for analysis. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="size-full wp-image-863 aligncenter" title="128px-Feed-icon.svg" src="http://cloudtesting.files.wordpress.com/2009/10/128px-feed-icon-svg.png" alt="128px-Feed-icon.svg" width="128" height="128" /></p>
<p>Cloud Testing has released a updated version of it&#8217;s Portal (<a href="http://portal.cloudtesting.com/">http://portal.cloudtesting.com/</a>) which gives customers the ability to view the status of both projects and scripts in an RSS feed.</p>
<p>Cloud Testing allows users to run scripts captured with Selenium IDE in a selection of browsers, with full screen-shots and diagnostics recorded and stored for analysis. For full details of all the features, see <a href="http://www.cloudtesting.com/serviceFeaturesFunctional.php">http://www.cloudtesting.com/serviceFeaturesFunctional.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudtesting.com/blog/2009/10/22/rss-feed-for-script-results-and-project-status-now-in-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1.5.6 Agent software</title>
		<link>http://www.cloudtesting.com/blog/2009/10/15/1-5-6-agent-software-released/</link>
		<comments>http://www.cloudtesting.com/blog/2009/10/15/1-5-6-agent-software-released/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 15:13:39 +0000</pubDate>
		<dc:creator>Matt Rees - Cloud Testing</dc:creator>
				<category><![CDATA[Cloud Testing]]></category>
		<category><![CDATA[Selenium]]></category>

		<guid isPermaLink="false">http://blog.cloudtesting.com/?p=840</guid>
		<description><![CDATA[The latest Cloud Testing agent software has now been released. All cookies are now removed using the Selenium command deleteAllVisibleCookies(); See the Updates section for details of all agent releases.]]></description>
			<content:encoded><![CDATA[<p>The latest Cloud Testing agent software has now been released.</p>
<p>All cookies are now removed using the Selenium command deleteAllVisibleCookies();</p>
<p>See the <a href="http://blog.cloudtesting.com/updates/">Updates section</a> for details of all agent releases.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudtesting.com/blog/2009/10/15/1-5-6-agent-software-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the Selenium Highlight command with Cloud Testing</title>
		<link>http://www.cloudtesting.com/blog/2009/09/22/using-the-selenium-highlight-command-with-cloud-testing/</link>
		<comments>http://www.cloudtesting.com/blog/2009/09/22/using-the-selenium-highlight-command-with-cloud-testing/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 15:20:30 +0000</pubDate>
		<dc:creator>Phil Smith - Cloud Testing</dc:creator>
				<category><![CDATA[Cloud Testing]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[Selenium IDE]]></category>
		<category><![CDATA[highlight]]></category>

		<guid isPermaLink="false">http://blog.cloudtesting.com/?p=781</guid>
		<description><![CDATA[There is a little used but handy Selenium command called Highlight. It as you might have guessed highlights an element on a web page, which when combined with the screen-shot capabilities of Cloud Testing comes into it&#8217;s own. The syntax is: highlight(locator) Arguments: locator &#8211; an element locator Briefly changes the backgroundColor of the specified [...]]]></description>
			<content:encoded><![CDATA[<p>There is a little used but handy Selenium command called <strong>Highlight</strong>. It as you might have guessed highlights an element on a web page, which when combined with the screen-shot capabilities of Cloud Testing comes into it&#8217;s own.</p>
<p>The syntax is:</p>
<dl>
<blockquote><dt><strong>highlight(locator)</strong></dt>
<dd>
<div>Arguments:</div>
<ul>
<li>locator &#8211; an <a>element locator</a></li>
</ul>
<p>Briefly changes the backgroundColor of the specified element yellow.  Useful for debugging.</p>
</dd>
</blockquote>
</dl>
<p>To use this feature within Cloud Testing, just choose the Highlight command, and enter the element or link name e.g. &#8216;link=Click Me&#8217; for the first argument.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-783" style="border:1px solid black;" title="highlight-results" src="http://cloudtesting.files.wordpress.com/2009/09/highlight-results.png" alt="highlight-results" width="600" height="340" /></p>
<p>To enable you to view the highlighted area, you will need to add a Capture Screenshot command as the next step in the script, as the highlighting is reset and removed on any page refreshes or reloads.</p>
<p>The area corresponding to the element is highlighted in yellow as can be seen in the following view:</p>
<p style="text-align:center;"><img class="size-thumbnail wp-image-785 aligncenter" style="border:1px solid black;" title="highlighted" src="http://cloudtesting.files.wordpress.com/2009/09/highlighted.png" alt="highlighted" /></p>
<p style="text-align:center;">
<p style="text-align:left;">The following shows how you would highlight a text box on the screen.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-792" style="border:1px solid black;" title="highlight2-results" src="http://cloudtesting.files.wordpress.com/2009/09/highlight2-results.png" alt="highlight2-results" width="600" height="296" /></p>
<p style="text-align:left;">and a larger view of the highlighted element:</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-793" style="border:1px solid black;" title="highlighted2" src="http://cloudtesting.files.wordpress.com/2009/09/highlighted2.png" alt="highlighted2" width="532" height="169" /></p>
<p>For more information on the Cloud Testing service and features, please visit the Cloud Testing website at <a href="http://www.cloudtesting.com/">www.cloudtesting.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudtesting.com/blog/2009/09/22/using-the-selenium-highlight-command-with-cloud-testing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOWTO: Cookie manipulation with Selenium and Cloud Testing</title>
		<link>http://www.cloudtesting.com/blog/2009/08/24/howto-cookie-manipulation-with-selenium-and-cloud-testing/</link>
		<comments>http://www.cloudtesting.com/blog/2009/08/24/howto-cookie-manipulation-with-selenium-and-cloud-testing/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 14:45:38 +0000</pubDate>
		<dc:creator>Phil Smith - Cloud Testing</dc:creator>
				<category><![CDATA[Cloud Testing]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[cookie]]></category>

		<guid isPermaLink="false">http://blog.cloudtesting.com/?p=680</guid>
		<description><![CDATA[As the Cloud Testing service uses Selenium RC, and real browsers such as Firefox, Internet Explorer, Safari, Chrome and Opera, cookie handling while running your test should be taken care of automatically. If however you want to do something special, you can override the default behaviour as follows: Create Cookie You can add cookies by [...]]]></description>
			<content:encoded><![CDATA[<p>As the Cloud Testing service uses Selenium RC, and real browsers such as Firefox, Internet Explorer, Safari, Chrome and Opera, cookie handling while running your test should be taken care of automatically. If however you want to do something special, you can override the default behaviour as follows:</p>
<h2>Create Cookie</h2>
<p>You can add cookies by using the ‘Create Cookie’ command.</p>
<p>The first argument is the name=value, e.g.</p>
<p>PHPSessionID=1213121</p>
<p>The second argument contain options for the cookie. Currenly ‘path’ and ‘max_age’ are supported.</p>
<p>The format is:</p>
<p>&#8220;path=/directory/, max_age=3600&#8243;</p>
<div id="attachment_681" class="wp-caption aligncenter" style="width: 545px"><img class="size-full wp-image-681" title="Create Cookie example" src="http://cloudtesting.files.wordpress.com/2009/08/cookies1.png" alt="cookies1" width="535" height="70" /><p class="wp-caption-text">Create Cookie example</p></div>
<p style="text-align:center;">For example:</p>
<h2>Delete Cookie</h2>
<p>Cookies can also be deleted using the &#8216;Delete Cookie&#8217; command. This take the cookie name as the first argument and the path as the second.</p>
<div id="attachment_686" class="wp-caption aligncenter" style="width: 545px"><img class="size-full wp-image-686" title="Delete Cookie example" src="http://cloudtesting.files.wordpress.com/2009/08/cookies3.png" alt="Delete Cookie example." width="535" height="32" /><p class="wp-caption-text">Delete Cookie example.</p></div>
<h2>Full Example</h2>
<p>In the following example, we visit a page, from which we get some cookies set by the server, we then add two cookies of our own, before deleting one of them.</p>
<div id="attachment_682" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-682" title="Script with cookie create / delete" src="http://cloudtesting.files.wordpress.com/2009/08/cookies2.png" alt="Script with cookie create / delete" width="600" height="255" /><p class="wp-caption-text">Script with cookie create / delete</p></div>
<p>When we run the test, we get the following results:</p>
<div id="attachment_690" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-690" title="Results of a test run" src="http://cloudtesting.files.wordpress.com/2009/08/cookies61.png" alt="Results of a test run" width="600" height="867" /><p class="wp-caption-text">Results of a test run</p></div>
<p>You are always able to view the cookies on any step that has interaction with the web server. After we have visited the page at step 1, we have the following cookies set:</p>
<div id="attachment_683" class="wp-caption aligncenter" style="width: 413px"><img class="size-full wp-image-683" title="Original cookies - set by server" src="http://cloudtesting.files.wordpress.com/2009/08/cookies4.png" alt="Original cookies - set by server" width="403" height="65" /><p class="wp-caption-text">Original cookies - set by server</p></div>
<p>After we set our own cookies at step 3 and 4 (CT and CT2), the next server interaction results in us having the following cookies set:</p>
<div id="attachment_684" class="wp-caption aligncenter" style="width: 363px"><img class="size-full wp-image-684" title="After manually added cookies" src="http://cloudtesting.files.wordpress.com/2009/08/cookies5.png" alt="After manually added cookies" width="353" height="79" /><p class="wp-caption-text">After manually added cookies</p></div>
<p>Note that the original cookies are still set, any new ones are just added.</p>
<p>In step 7 we delete one of the cookies we added (CT), we are left with the original ones from the server plus CT2:</p>
<div id="attachment_692" class="wp-caption aligncenter" style="width: 362px"><img class="size-full wp-image-692" title="After deleting the manual cookie CT" src="http://cloudtesting.files.wordpress.com/2009/08/cookies7.png" alt="After deleting the manual cookie CT" width="352" height="75" /><p class="wp-caption-text">After deleting the manual cookie CT</p></div>
<p>For full details of the services and features available from Cloud testing see <a href="http://www.cloudtesting.com/">www.cloudtesting.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cloudtesting.com/blog/2009/08/24/howto-cookie-manipulation-with-selenium-and-cloud-testing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

