I'm looking for a way to reuse one NUnit test suite without duplicating the entire suite for each browser. It seems like I would need a new fixture for each browser. Can I send some sort of environment variable or configuration setting from the NUnit gui to switch the browser? see below:
[TestFixture]
public class User
{
private ISelenium selenium;
private StringBuilder verificationErrors;
[SetUp]
public void SetupTest()
{
// TheBrowser = How do I populate this variable from the NUnit gui?
selenium = new DefaultSelenium("localhost", 4444, **TheBrowser**, "http://localhost:52251/");
selenium.Start();
verificationErrors = new StringBuilder();
}
[TearDown]
public void TeardownTest()
{
...
}
[Test]
public void SearchUser()
{
...
}
}