<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Selenium RC In C# as a Console App: Another End-To-End Example</title>
	<atom:link href="http://thetestingblog.com/2010/02/02/selenium-rc-in-console-app/feed/" rel="self" type="application/rss+xml" />
	<link>http://thetestingblog.com/2010/02/02/selenium-rc-in-console-app/</link>
	<description>Why, testing, of course!</description>
	<lastBuildDate>Wed, 01 Sep 2010 23:29:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Leks</title>
		<link>http://thetestingblog.com/2010/02/02/selenium-rc-in-console-app/#comment-446</link>
		<dc:creator>Leks</dc:creator>
		<pubDate>Tue, 20 Jul 2010 12:07:38 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=364#comment-446</guid>
		<description>This article is awesome. Good job.</description>
		<content:encoded><![CDATA[<p>This article is awesome. Good job.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://thetestingblog.com/2010/02/02/selenium-rc-in-console-app/#comment-430</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Thu, 15 Jul 2010 13:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=364#comment-430</guid>
		<description>Try this good tutorial from Matt Heusser it should get you going: http://searchsoftwarequality.techtarget.com/tip/0,289483,sid92_gci1516589,00.html</description>
		<content:encoded><![CDATA[<p>Try this good tutorial from Matt Heusser it should get you going: <a href="http://searchsoftwarequality.techtarget.com/tip/0,289483,sid92_gci1516589,00.html" rel="nofollow">http://searchsoftwarequality.techtarget.com/tip/0,289483,sid92_gci1516589,00.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thattil</title>
		<link>http://thetestingblog.com/2010/02/02/selenium-rc-in-console-app/#comment-429</link>
		<dc:creator>thattil</dc:creator>
		<pubDate>Thu, 15 Jul 2010 10:59:03 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=364#comment-429</guid>
		<description>hi
thanks for replying i ill try!!!!!!!!!!
Can any1 tell how to read data from the text box as it ill b helpful for validation
in selenium....
please do reply</description>
		<content:encoded><![CDATA[<p>hi<br />
thanks for replying i ill try!!!!!!!!!!<br />
Can any1 tell how to read data from the text box as it ill b helpful for validation<br />
in selenium&#8230;.<br />
please do reply</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://thetestingblog.com/2010/02/02/selenium-rc-in-console-app/#comment-427</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 14 Jul 2010 14:30:31 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=364#comment-427</guid>
		<description>Well I do something like this (my Root URL is opened with the selenium = new DefaultSelenium() command early on):

selenium.Open(&quot;/&quot;);
selenium.WaitForPageToLoad(GlobalSettings.TimeoutVar);
selenium.Open(&quot;/registration&quot;);
selenium.Open(myUrl);
selenium.WaitForPageToLoad(GlobalSettings.TimeoutVar);
selenium.Click(&quot;dashboard_ContinueButton&quot;);
selenium.WaitForPageToLoad(GlobalSettings.TimeoutVar);
selenium.Click(&quot;dashboard_ContinueButton&quot;);
selenium.WaitForPageToLoad(GlobalSettings.TimeoutVar);

Is that close to what you do, or do you have a different kind of setup?  Basically this script does a simple registration, opening the default site, then a sub-site with a page that only needs some click-throughs. I kept out the data entry since that wasn&#039;t part of your question.</description>
		<content:encoded><![CDATA[<p>Well I do something like this (my Root URL is opened with the selenium = new DefaultSelenium() command early on):</p>
<p>selenium.Open(&#8220;/&#8221;);<br />
selenium.WaitForPageToLoad(GlobalSettings.TimeoutVar);<br />
selenium.Open(&#8220;/registration&#8221;);<br />
selenium.Open(myUrl);<br />
selenium.WaitForPageToLoad(GlobalSettings.TimeoutVar);<br />
selenium.Click(&#8220;dashboard_ContinueButton&#8221;);<br />
selenium.WaitForPageToLoad(GlobalSettings.TimeoutVar);<br />
selenium.Click(&#8220;dashboard_ContinueButton&#8221;);<br />
selenium.WaitForPageToLoad(GlobalSettings.TimeoutVar);</p>
<p>Is that close to what you do, or do you have a different kind of setup?  Basically this script does a simple registration, opening the default site, then a sub-site with a page that only needs some click-throughs. I kept out the data entry since that wasn&#8217;t part of your question.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thattil</title>
		<link>http://thetestingblog.com/2010/02/02/selenium-rc-in-console-app/#comment-426</link>
		<dc:creator>thattil</dc:creator>
		<pubDate>Wed, 14 Jul 2010 06:16:04 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=364#comment-426</guid>
		<description>hi
i am using C#  it works well when i use one link for testing.......
but when it comes to use two links one after the other it dose not works
Solution :- i have to separate the two link in two different classes


Can any 1 tell y its happening</description>
		<content:encoded><![CDATA[<p>hi<br />
i am using C#  it works well when i use one link for testing&#8230;&#8230;.<br />
but when it comes to use two links one after the other it dose not works<br />
Solution :- i have to separate the two link in two different classes</p>
<p>Can any 1 tell y its happening</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Brown</title>
		<link>http://thetestingblog.com/2010/02/02/selenium-rc-in-console-app/#comment-424</link>
		<dc:creator>Daniel Brown</dc:creator>
		<pubDate>Mon, 12 Jul 2010 16:15:42 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=364#comment-424</guid>
		<description>thattil,

Selenium can&#039;t really be used outside the web browser context (it uses XPath, Javascript, etc to tell what&#039;s what and &quot;do stuff&quot;.).  Windows apps don&#039;t really run the same as web apps.  SHORT ANSWER: I don&#039;t know of a way to make it work with a Windows App.  But if you do figure it out, that&#039;s a blog entry. :)</description>
		<content:encoded><![CDATA[<p>thattil,</p>
<p>Selenium can&#8217;t really be used outside the web browser context (it uses XPath, Javascript, etc to tell what&#8217;s what and &#8220;do stuff&#8221;.).  Windows apps don&#8217;t really run the same as web apps.  SHORT ANSWER: I don&#8217;t know of a way to make it work with a Windows App.  But if you do figure it out, that&#8217;s a blog entry. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Brown</title>
		<link>http://thetestingblog.com/2010/02/02/selenium-rc-in-console-app/#comment-423</link>
		<dc:creator>Daniel Brown</dc:creator>
		<pubDate>Mon, 12 Jul 2010 16:09:43 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=364#comment-423</guid>
		<description>Madhu, I don&#039;t have a good answer for you right now.  This is definitely a struggle in Selenium.  I think the guys writing Selenium need to come up with a clean solution for handling these cases.  You&#039;re right the commands to help don&#039;t always get it down.

If I find some effective tricks to handling Popups, I will post a blog entry on it. Thanks for the idea!  Now to really research it... :(</description>
		<content:encoded><![CDATA[<p>Madhu, I don&#8217;t have a good answer for you right now.  This is definitely a struggle in Selenium.  I think the guys writing Selenium need to come up with a clean solution for handling these cases.  You&#8217;re right the commands to help don&#8217;t always get it down.</p>
<p>If I find some effective tricks to handling Popups, I will post a blog entry on it. Thanks for the idea!  Now to really research it&#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thattil</title>
		<link>http://thetestingblog.com/2010/02/02/selenium-rc-in-console-app/#comment-419</link>
		<dc:creator>thattil</dc:creator>
		<pubDate>Mon, 12 Jul 2010 06:28:41 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=364#comment-419</guid>
		<description>hii daniel
Thanks for the tutorial its really helped me a lot

Can any1 knw how to use selenium for windows application</description>
		<content:encoded><![CDATA[<p>hii daniel<br />
Thanks for the tutorial its really helped me a lot</p>
<p>Can any1 knw how to use selenium for windows application</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madhu</title>
		<link>http://thetestingblog.com/2010/02/02/selenium-rc-in-console-app/#comment-415</link>
		<dc:creator>Madhu</dc:creator>
		<pubDate>Thu, 08 Jul 2010 06:15:10 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=364#comment-415</guid>
		<description>Hi daniel ,
 Can any you please post a topic on handling pop up and alert messages(javascript)using selenium RC .It ll be really great .None of the commands like getalert , ChooseOkOnNextConfirmation is detecting the popups in my application !!</description>
		<content:encoded><![CDATA[<p>Hi daniel ,<br />
 Can any you please post a topic on handling pop up and alert messages(javascript)using selenium RC .It ll be really great .None of the commands like getalert , ChooseOkOnNextConfirmation is detecting the popups in my application !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: habib</title>
		<link>http://thetestingblog.com/2010/02/02/selenium-rc-in-console-app/#comment-407</link>
		<dc:creator>habib</dc:creator>
		<pubDate>Mon, 05 Jul 2010 09:43:44 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=364#comment-407</guid>
		<description>very very nice tutorial!!!</description>
		<content:encoded><![CDATA[<p>very very nice tutorial!!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
