<?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 Wiki</title>
	<atom:link href="http://www.seleniumwiki.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.seleniumwiki.com</link>
	<description>It is not the software that is great; it&#039;s the people who use it who make it great.</description>
	<lastBuildDate>Mon, 23 Apr 2012 00:11:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Running different versions of Firefox on Selenium Grid 2</title>
		<link>http://www.seleniumwiki.com/software-testing/selenium-grid/running-different-versions-of-firefox-on-selenium-grid-2/</link>
		<comments>http://www.seleniumwiki.com/software-testing/selenium-grid/running-different-versions-of-firefox-on-selenium-grid-2/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 00:11:57 +0000</pubDate>
		<dc:creator>Pavandeep Puddupakkam</dc:creator>
				<category><![CDATA[Selenium Grid]]></category>
		<category><![CDATA[browserName=firefox]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[platform=WINDOWS]]></category>
		<category><![CDATA[selenium grid 2]]></category>

		<guid isPermaLink="false">http://www.seleniumwiki.com/?p=781</guid>
		<description><![CDATA[Here is the command line to run Firefox versions on selenium grid 2 java -jar selenium-server-standalone-2.20.0.jar -role rc -hub http://127.0.0.1:4444/grid/register -browser &#8220;browserName=firefox,platform=WINDOWS,version=5&#8243; -port 5559 (RC). I download Firefox 5 and saved it in a folder [b]FF5 [/b]on my C drive. Here is my selenium set-up to run my selenium rc scripts on Port 5559 and [...]]]></description>
		<wfw:commentRss>http://www.seleniumwiki.com/software-testing/selenium-grid/running-different-versions-of-firefox-on-selenium-grid-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handling alerts in selenium webdriver</title>
		<link>http://www.seleniumwiki.com/webdriver/handling-alerts-in-selenium-webdriver/</link>
		<comments>http://www.seleniumwiki.com/webdriver/handling-alerts-in-selenium-webdriver/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 20:57:02 +0000</pubDate>
		<dc:creator>Pavandeep Puddupakkam</dc:creator>
				<category><![CDATA[WebDriver]]></category>
		<category><![CDATA[clickOkInAlert]]></category>
		<category><![CDATA[ExpectedCondition]]></category>
		<category><![CDATA[NullPointerException]]></category>
		<category><![CDATA[WebDriverWait]]></category>

		<guid isPermaLink="false">http://www.seleniumwiki.com/?p=779</guid>
		<description><![CDATA[Here is an example of handling alerts in selenium webdriver protected Alert waitForAlert(WebDriver driver, int seconds) { org.openqa.selenium.support.ui.Wait wait = new WebDriverWait(driver, seconds).ignoring(NullPointerException.class); Alert alert = wait.until(new ExpectedCondition() { @Override public Alert apply(WebDriver driver) { Alert alert = driver.switchTo().alert(); alert.getText(); return alert; } }); return alert; } protected void clickOkInAlert(){ // Get a handle to [...]]]></description>
		<wfw:commentRss>http://www.seleniumwiki.com/webdriver/handling-alerts-in-selenium-webdriver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding objects/elements on web page using Selenium RC and Webdriver</title>
		<link>http://www.seleniumwiki.com/selenium-rc/finding-objectselements-on-web-page-using-selenium-rc-and-webdriver/</link>
		<comments>http://www.seleniumwiki.com/selenium-rc/finding-objectselements-on-web-page-using-selenium-rc-and-webdriver/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 20:38:56 +0000</pubDate>
		<dc:creator>Pavandeep Puddupakkam</dc:creator>
				<category><![CDATA[Selenium RC]]></category>
		<category><![CDATA[WebDriver]]></category>
		<category><![CDATA[findElements]]></category>
		<category><![CDATA[GetAllButtons]]></category>
		<category><![CDATA[GetAllFields]]></category>
		<category><![CDATA[isEmpty]]></category>

		<guid isPermaLink="false">http://www.seleniumwiki.com/?p=778</guid>
		<description><![CDATA[Selenium has API&#8217;s to get the element ID&#8217;s of the web page like Selenium.GetAllButtons(); Selenium.GetAllFields(); and more. If you use the WebDriver than you can use the following code: protected List findElements(By by) { if (!(driver.findElements(by).isEmpty())){ log.info("elements " + by + " are found"); return driver.findElements(by); }else{ log.warn("elements " + by + " are not [...]]]></description>
		<wfw:commentRss>http://www.seleniumwiki.com/selenium-rc/finding-objectselements-on-web-page-using-selenium-rc-and-webdriver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to locate an element by Xpath with its dynamic title</title>
		<link>http://www.seleniumwiki.com/selenium-rc/how-to-locate-an-element-by-xpath-with-its-dynamic-title/</link>
		<comments>http://www.seleniumwiki.com/selenium-rc/how-to-locate-an-element-by-xpath-with-its-dynamic-title/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 20:20:24 +0000</pubDate>
		<dc:creator>Pavandeep Puddupakkam</dc:creator>
				<category><![CDATA[Selenium RC]]></category>
		<category><![CDATA[XPath]]></category>
		<category><![CDATA[dynamic content]]></category>
		<category><![CDATA[selenium RC]]></category>
		<category><![CDATA[using contains in xpath]]></category>
		<category><![CDATA[Xpath]]></category>

		<guid isPermaLink="false">http://www.seleniumwiki.com/?p=776</guid>
		<description><![CDATA[Example: I have two images]]></description>
		<wfw:commentRss>http://www.seleniumwiki.com/selenium-rc/how-to-locate-an-element-by-xpath-with-its-dynamic-title/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Ctrl + mouse click in WebDriver C#</title>
		<link>http://www.seleniumwiki.com/webdriver/using-ctrl-mouse-click-in-webdriver-c/</link>
		<comments>http://www.seleniumwiki.com/webdriver/using-ctrl-mouse-click-in-webdriver-c/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 20:12:29 +0000</pubDate>
		<dc:creator>Pavandeep Puddupakkam</dc:creator>
				<category><![CDATA[WebDriver]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[KeyDown]]></category>
		<category><![CDATA[Perform()]]></category>
		<category><![CDATA[Release()]]></category>

		<guid isPermaLink="false">http://www.seleniumwiki.com/?p=775</guid>
		<description><![CDATA[I found this interesting article about using Ctrl + mouse click in WebDriver and thought of sharing it with you. Note: I have not used it yet. If you use it please let me know know how it works or if there are any issues. Actions(driver).KeyDown(Keys.Control).Click(element).Release().Perform();]]></description>
		<wfw:commentRss>http://www.seleniumwiki.com/webdriver/using-ctrl-mouse-click-in-webdriver-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

