Project Description
Selenium Toolkit for .NET simplifies the setup and use of the popular functional testing framework Selenium. Simply add a reference and go!

Features
News

Learn More
Examples

A basic test that uses attributes to define runtime settings:

[WebFixture("*iexplore","http://mywebsite.com"]
public class HomePageTest
{
	[WebTest]
	public void OpenHomePage()
	{
		ISelenium browser = Browser.Current;

		browser.Open("/");
	}
}

A test that uses settings in the config

[WebFixture]
public class HomePageTest
{
        [WebTest]
        public void OpenHomePage()
        {
               ISelenium browser = Browser.Current;
              
               browser.Open("/");
        }
}

An absolute barebones configuration (assuming registry keys are present):

<configuration>
    <confgSections>
         <section type="SeleniumToolkit.Config.SeleniumConfiguration, SeleniumToolkit" />
    </configSections>

    <Selenium
         BrowserUrl="http://mywebsite.com"
         />
</configuration>

Buzz
 the urban canuk, eh News Feed 
Wednesday, January 05, 2011  |  From the urban canuk, eh
Wednesday, August 18, 2010  |  From the urban canuk, eh
Monday, November 23, 2009  |  From the urban canuk, eh
Thursday, November 19, 2009  |  From the urban canuk, eh
Monday, October 19, 2009  |  From the urban canuk, eh
Monday, September 21, 2009  |  From the urban canuk, eh
Thursday, September 17, 2009  |  From the urban canuk, eh
Wednesday, September 16, 2009  |  From the urban canuk, eh
 the urban canuk, eh News Feed