<?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 &#187; Selenium RC</title>
	<atom:link href="http://www.seleniumwiki.com/category/selenium-rc/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>Sun, 19 Feb 2012 21:52:04 +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>Using selenium.GetAttribute in Webdriver</title>
		<link>http://www.seleniumwiki.com/selenium-rc/using-selenium-getattribute-in-webdriver/</link>
		<comments>http://www.seleniumwiki.com/selenium-rc/using-selenium-getattribute-in-webdriver/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 04:40:31 +0000</pubDate>
		<dc:creator>Pavandeep Puddupakkam</dc:creator>
				<category><![CDATA[Selenium RC]]></category>
		<category><![CDATA[WebDriver]]></category>
		<category><![CDATA[Selenium Remote-Control]]></category>
		<category><![CDATA[selenium.GetAttribute]]></category>

		<guid isPermaLink="false">http://www.seleniumwiki.com/?p=732</guid>
		<description><![CDATA[Here is the Selenium RC code for selenium.GetAttribute in Webdriver. This code is in Visual Studio C# public string GetAttribute(string xpath, string attribut) { string value = ""; if (IsElementPresent(xpath)) { value = driver.FindElement(By.XPath(xpath)).GetAttribute(attribut); } return value; }]]></description>
		<wfw:commentRss>http://www.seleniumwiki.com/selenium-rc/using-selenium-getattribute-in-webdriver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using selenium.Select in Webdriver</title>
		<link>http://www.seleniumwiki.com/selenium-rc/using-selenium-select-in-webdriver/</link>
		<comments>http://www.seleniumwiki.com/selenium-rc/using-selenium-select-in-webdriver/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 04:39:02 +0000</pubDate>
		<dc:creator>Pavandeep Puddupakkam</dc:creator>
				<category><![CDATA[Selenium RC]]></category>
		<category><![CDATA[WebDriver]]></category>
		<category><![CDATA[Selenium Remote-Control]]></category>
		<category><![CDATA[selenium.Select]]></category>

		<guid isPermaLink="false">http://www.seleniumwiki.com/?p=731</guid>
		<description><![CDATA[Here is the Selenium RC code for selenium.Select in Webdriver. This code is in Visual Studio C# public void Select(string xpath, string value) { driver.FindElement(By.XPath(xpath+"/option[.='"+value+"']")).Click(); }]]></description>
		<wfw:commentRss>http://www.seleniumwiki.com/selenium-rc/using-selenium-select-in-webdriver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using selenium.Open in Webdriver</title>
		<link>http://www.seleniumwiki.com/selenium-rc/using-selenium-open-in-webdriver/</link>
		<comments>http://www.seleniumwiki.com/selenium-rc/using-selenium-open-in-webdriver/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 04:34:24 +0000</pubDate>
		<dc:creator>Pavandeep Puddupakkam</dc:creator>
				<category><![CDATA[Selenium RC]]></category>
		<category><![CDATA[WebDriver]]></category>
		<category><![CDATA[Selenium Remote-Control]]></category>
		<category><![CDATA[selenium.Open]]></category>

		<guid isPermaLink="false">http://www.seleniumwiki.com/?p=730</guid>
		<description><![CDATA[Here is the Selenium RC code for selenium.Open in Webdriver. This code is in Visual Studio C# public void Open(string URL) { driver.Navigate().GoToUrl(URL); }]]></description>
		<wfw:commentRss>http://www.seleniumwiki.com/selenium-rc/using-selenium-open-in-webdriver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Verifying the canonical tag on a web page using Selenium GetLocation</title>
		<link>http://www.seleniumwiki.com/selenium-rc/verifying-the-canonical-tag-on-a-web-page-using-selenium-getlocation/</link>
		<comments>http://www.seleniumwiki.com/selenium-rc/verifying-the-canonical-tag-on-a-web-page-using-selenium-getlocation/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 23:53:22 +0000</pubDate>
		<dc:creator>Pavandeep Puddupakkam</dc:creator>
				<category><![CDATA[Selenium RC]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[canonical tag]]></category>
		<category><![CDATA[GetLocation]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[System.Web.HttpUtility.UrlDecode]]></category>

		<guid isPermaLink="false">http://www.seleniumwiki.com/?p=729</guid>
		<description><![CDATA[Here is an example to verify the canonical tag on a web page using Selenium GetLocation. The selenium script is written in C# public int CheckCanonicalTag() { int resultcount = 0; string URL = selenium.GetLocation(); if (selenium.IsElementPresent("//link[@rel='canonical' and @href='" + System.Web.HttpUtility.UrlDecode(URL) + "']")) { Console.WriteLine( "Canonical tags is present on the page :" + URL); [...]]]></description>
		<wfw:commentRss>http://www.seleniumwiki.com/selenium-rc/verifying-the-canonical-tag-on-a-web-page-using-selenium-getlocation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Selenium in a Ajax web application</title>
		<link>http://www.seleniumwiki.com/selenium-rc/using-selenium-in-a-ajax-web-application/</link>
		<comments>http://www.seleniumwiki.com/selenium-rc/using-selenium-in-a-ajax-web-application/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 01:16:14 +0000</pubDate>
		<dc:creator>Pavandeep Puddupakkam</dc:creator>
				<category><![CDATA[Selenium RC]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery.ajax.active]]></category>
		<category><![CDATA[selenium.browserbot.getCurrentWindow]]></category>
		<category><![CDATA[selenium.IsElementPresent]]></category>
		<category><![CDATA[WaitForCondition]]></category>
		<category><![CDATA[waitForElementPresent]]></category>

		<guid isPermaLink="false">http://www.seleniumwiki.com/?p=699</guid>
		<description><![CDATA[On an Ajax web application or Ajax feature on web page small sections of the page will update and often the entire webpage will not load. It&#8217;s necessary to wait until this ajax process is completed before interacting with sections of the page where content or controls are yet to be rendered. The Ajax application [...]]]></description>
		<wfw:commentRss>http://www.seleniumwiki.com/selenium-rc/using-selenium-in-a-ajax-web-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

