Nunit ile Selenium Entegrasyonu
Nunit ile Selenium Entegrasyonu
Nunit ile Selenium Entegrasyonu
[OneTimeSetUp]
public void ClassInit()
{
DriverChrome = BrowserSetUp(BrowserOptionNames.Chrome, HomeUrl, WaitElement);
DriverFirefox = BrowserSetUp(BrowserOptionNames.Firefox, HomeUrl, WaitElement);
}[SetUp]
public void SetUp()
{
DriverChrome.Navigate().GoToUrl(HomeUrl);
DriverFirefox.Navigate().GoToUrl(HomeUrl);
}
Last updated