<?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>HeatWare.net &#187; QA &#8211; Web</title>
	<atom:link href="http://heatware.net/category/qa-web/feed/" rel="self" type="application/rss+xml" />
	<link>http://heatware.net</link>
	<description>Computer tips from A to Z: Windows, Unix, Programming, QA, and more!</description>
	<lastBuildDate>Wed, 25 Jan 2012 21:48:41 +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>Automatically bypass SSL Certificate warning/exception in Firefox</title>
		<link>http://heatware.net/free-software/automatically-bypass-ssl-certificate-warning-exception-firefox/</link>
		<comments>http://heatware.net/free-software/automatically-bypass-ssl-certificate-warning-exception-firefox/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 05:47:32 +0000</pubDate>
		<dc:creator>sood</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[QA - Web]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://heatware.net/?p=654</guid>
		<description><![CDATA[Have you ever gotten those pesky &#8220;This connection is untrusted&#8221; SSL certificate warnings in Firefox where you have to click on &#8220;Add Exception&#8221; to bypass the screen? Perhaps, you are trying to do some UI automation using Selenium or Watir and this message is getting in the way. Well, don&#8217;t waste anymore time looking for [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever gotten those pesky &#8220;This connection is untrusted&#8221; SSL certificate warnings in Firefox where you have to click on &#8220;Add Exception&#8221; to bypass the screen? Perhaps, you are trying to do some UI automation using Selenium or Watir and this message is getting in the way. Well, don&#8217;t waste anymore time looking for a solution because I found one for you! There is now a Firefox plugin called <em>Remember Certificate Exception</em> that will drive the browser and automatically click on the option to add the exception. Give this a try, but be careful to what sites you allow!</p>
<p>For more information on this plugin and to download, click <a rel="nofollow" href="https://addons.mozilla.org/en-US/firefox/addon/10246/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://heatware.net/free-software/automatically-bypass-ssl-certificate-warning-exception-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to test AJAX websites using Selenium</title>
		<link>http://heatware.net/qa-web/how-to-test-ajax-applications-using-selenium/</link>
		<comments>http://heatware.net/qa-web/how-to-test-ajax-applications-using-selenium/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 18:28:32 +0000</pubDate>
		<dc:creator>sood</dc:creator>
				<category><![CDATA[QA - Web]]></category>
		<category><![CDATA[QA]]></category>
		<category><![CDATA[Selenium]]></category>

		<guid isPermaLink="false">http://heatware.net/?p=91</guid>
		<description><![CDATA[This article will show you how to test AJAX web applications using Selenium. If you have used Selenium before, you are familiar with the wait_for_page_to_load (waitForPageToLoad) call which waits until a page finishes loading before continuing. If you have tried using this for an AJAX-enabled website, you will notice that your Selenium scripts just whizzes [...]]]></description>
			<content:encoded><![CDATA[<p>This article will show you how to test AJAX web applications using Selenium. If you have used Selenium before, you are familiar with the wait_for_page_to_load (waitForPageToLoad) call which waits until a page finishes loading before continuing. If you have tried using this for an AJAX-enabled website, you will notice that your Selenium scripts just whizzes by that call.  A quick and easy way to fix this is by using the wait_for_condition (waitForCondition) call that will wait until all pending AJAX requests have completed before continuing with the rest of the test script. Simple add this call immediately after your action that spawns an AJAX request:</p>
<p><code>selenium.wait_for_condition "selenium.browserbot.getCurrentWindow().Ajax.activeRequestCount == 0", 60000</code></p>
<p>For example:<br />
<code> selenium.load "http://heatware.net/"<br />
selenium.click "link_that_makes_ajax_call"<br />
selenium.wait_for_condition "selenium.browserbot.getCurrentWindow().Ajax.activeRequestCount == 0", 60000</code></p>
]]></content:encoded>
			<wfw:commentRss>http://heatware.net/qa-web/how-to-test-ajax-applications-using-selenium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

