<?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# using NUnit: An End-to-End Example</title>
	<atom:link href="http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/feed/" rel="self" type="application/rss+xml" />
	<link>http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/</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: Mike</title>
		<link>http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/#comment-456</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sat, 21 Aug 2010 15:46:58 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=184#comment-456</guid>
		<description>Great step by step article.

Early on you Marisa had asked for input about what additional steps needed to be performed if you are running using the Express Edition.

I use VS 2008 Express Edition.

Two things:

1) Once you have built the project for the first time, you need to do an &quot;All Save&quot; so that your project is recognized by VS, and listed under projects in the IDE.  This also creates the directory structure &quot;C:\Documents and Settings\\My Documents\Visual Studio 2008\Projects\TestingBlogSeleniumRc\&quot;.
2) Express does not create the TestingBlogSeleniuRC.dll in the debug folder, it creates it in the release folder.  You need to hit F5 or the RUN arrow for a TestingBlogSeleniumRc.dll file to be created in &quot;C:\Documents and Settings\\My Documents\Visual Studio 2008\Projects\TestingBlogSeleniumRc\TestingBlogSeleniumRc\bin\Debug&quot;.</description>
		<content:encoded><![CDATA[<p>Great step by step article.</p>
<p>Early on you Marisa had asked for input about what additional steps needed to be performed if you are running using the Express Edition.</p>
<p>I use VS 2008 Express Edition.</p>
<p>Two things:</p>
<p>1) Once you have built the project for the first time, you need to do an &#8220;All Save&#8221; so that your project is recognized by VS, and listed under projects in the IDE.  This also creates the directory structure &#8220;C:\Documents and Settings\\My Documents\Visual Studio 2008\Projects\TestingBlogSeleniumRc\&#8221;.<br />
2) Express does not create the TestingBlogSeleniuRC.dll in the debug folder, it creates it in the release folder.  You need to hit F5 or the RUN arrow for a TestingBlogSeleniumRc.dll file to be created in &#8220;C:\Documents and Settings\\My Documents\Visual Studio 2008\Projects\TestingBlogSeleniumRc\TestingBlogSeleniumRc\bin\Debug&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio</title>
		<link>http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/#comment-455</link>
		<dc:creator>Antonio</dc:creator>
		<pubDate>Fri, 20 Aug 2010 00:41:43 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=184#comment-455</guid>
		<description>Great tutorial and thank you for shearing such amazing and valuable information.

I have got a question concerning on error I get from Nunit while running my test.

The error refers to a XHR ERROR...Response Code 12017.

I was wondering if anybody could give me an help with that.</description>
		<content:encoded><![CDATA[<p>Great tutorial and thank you for shearing such amazing and valuable information.</p>
<p>I have got a question concerning on error I get from Nunit while running my test.</p>
<p>The error refers to a XHR ERROR&#8230;Response Code 12017.</p>
<p>I was wondering if anybody could give me an help with that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/#comment-428</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Wed, 14 Jul 2010 17:12:09 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=184#comment-428</guid>
		<description>Excellent post! Just what I needed, thank you :)</description>
		<content:encoded><![CDATA[<p>Excellent post! Just what I needed, thank you <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/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/#comment-421</link>
		<dc:creator>Daniel Brown</dc:creator>
		<pubDate>Mon, 12 Jul 2010 15:57:55 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=184#comment-421</guid>
		<description>Those Headers [Test], [SetUp], [TearDown], etc. are simply directives for NUnit.  They are necessary if you use NUnit to run your tests.  If you are not using NUnit, but instead running the tests as a Console App, then they don&#039;t matter.

The way NUnit works is that it calls that [SetUp] method before every [Test], then it calls the [TearDown] method.  In each test class, you should only have one [SetUp] and one [TearDown].  But you can have multiple [Test] methods.  Does that make sense?</description>
		<content:encoded><![CDATA[<p>Those Headers [Test], [SetUp], [TearDown], etc. are simply directives for NUnit.  They are necessary if you use NUnit to run your tests.  If you are not using NUnit, but instead running the tests as a Console App, then they don&#8217;t matter.</p>
<p>The way NUnit works is that it calls that [SetUp] method before every [Test], then it calls the [TearDown] method.  In each test class, you should only have one [SetUp] and one [TearDown].  But you can have multiple [Test] methods.  Does that make sense?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Son Nguyen</title>
		<link>http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/#comment-418</link>
		<dc:creator>Son Nguyen</dc:creator>
		<pubDate>Sun, 11 Jul 2010 16:30:47 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=184#comment-418</guid>
		<description>Hi,
I&#039;m researching about Data Driven in Selenium. I found this forum but I cannot connect to http://seleniumcsharp.blogspot.com/ .Please help me
Thanks for your co-operation</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;m researching about Data Driven in Selenium. I found this forum but I cannot connect to <a href="http://seleniumcsharp.blogspot.com/" rel="nofollow">http://seleniumcsharp.blogspot.com/</a> .Please help me<br />
Thanks for your co-operation</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: soumya</title>
		<link>http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/#comment-417</link>
		<dc:creator>soumya</dc:creator>
		<pubDate>Thu, 08 Jul 2010 11:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=184#comment-417</guid>
		<description>hey is it necessary to [Test],[setup] before every method</description>
		<content:encoded><![CDATA[<p>hey is it necessary to [Test],[setup] before every method</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chaz</title>
		<link>http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/#comment-401</link>
		<dc:creator>Chaz</dc:creator>
		<pubDate>Mon, 28 Jun 2010 04:34:29 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=184#comment-401</guid>
		<description>To solve the problem of .NET 4 and the dll reference failure:
In Solution Explorer right-click on your project name and select Properties. From the Target Framawork box&#039;s dropdown list, select .NET Framework 4. 
You&#039;ll get a &quot;Target Framework Change&quot; warning. If you don&#039;t want to take the risk, copy your project to a new one and try again with confidence. I&#039;ve changed the target framework several times without any problems.</description>
		<content:encoded><![CDATA[<p>To solve the problem of .NET 4 and the dll reference failure:<br />
In Solution Explorer right-click on your project name and select Properties. From the Target Framawork box&#8217;s dropdown list, select .NET Framework 4.<br />
You&#8217;ll get a &#8220;Target Framework Change&#8221; warning. If you don&#8217;t want to take the risk, copy your project to a new one and try again with confidence. I&#8217;ve changed the target framework several times without any problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to use the Selenium-RC to test your first web application in Windows &#171; Eddie and Bonnie&#039;s Random Notes</title>
		<link>http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/#comment-400</link>
		<dc:creator>How to use the Selenium-RC to test your first web application in Windows &#171; Eddie and Bonnie&#039;s Random Notes</dc:creator>
		<pubDate>Fri, 25 Jun 2010 03:04:51 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=184#comment-400</guid>
		<description>[...] RC in C# using Nunit, an end to end example, http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/             Categories: Uncategorized        Comments (0) Trackbacks (0) Leave a comment [...]</description>
		<content:encoded><![CDATA[<p>[...] RC in C# using Nunit, an end to end example, <a href="http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/" rel="nofollow">http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/</a>             Categories: Uncategorized        Comments (0) Trackbacks (0) Leave a comment [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Brown</title>
		<link>http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/#comment-399</link>
		<dc:creator>Daniel Brown</dc:creator>
		<pubDate>Thu, 24 Jun 2010 16:21:35 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=184#comment-399</guid>
		<description>Ravi, when you say &quot;parameterize&quot;, what do you mean?  What are you trying to do?  Do you want to run the same test many times, filling in the values from say a spreadsheet or a database?  Describe what you&#039;re trying to accomplish, and I&#039;ll help. ;)</description>
		<content:encoded><![CDATA[<p>Ravi, when you say &#8220;parameterize&#8221;, what do you mean?  What are you trying to do?  Do you want to run the same test many times, filling in the values from say a spreadsheet or a database?  Describe what you&#8217;re trying to accomplish, and I&#8217;ll help. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ravi Salunkhe</title>
		<link>http://thetestingblog.com/2009/09/10/selenium-rc-in-c-using-nunit-an-end-to-end-example/#comment-398</link>
		<dc:creator>Ravi Salunkhe</dc:creator>
		<pubDate>Thu, 24 Jun 2010 13:20:15 +0000</pubDate>
		<guid isPermaLink="false">http://thetestingblog.com/?p=184#comment-398</guid>
		<description>awesome post...thankx a ton for this daniel well but how to parameterize the selenium tests....plz reply...m stuck on that...</description>
		<content:encoded><![CDATA[<p>awesome post&#8230;thankx a ton for this daniel well but how to parameterize the selenium tests&#8230;.plz reply&#8230;m stuck on that&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
