I am looking for a way to predefine some parameters (URL's) and then run a selenium test for each of them in C#.
- Where should I specify those URL's?
- How to implement reading of those parameters in my code?
[Test]
public void Test(string URLParameter)
{
driver.Navigate().GoToUrl(URLParameter);
}
- And how should I run those tests?