A
Amna Khalid 001
Guest
I want to run my test cases in parallel in cross browsers that are Chrome and Firefox. I am using C# Mstest framework. How can I do that chrome and firefox browsers open at a time? Here I initialized the chrome browsers .
[TestInitialize]
public void initilize()
{
WDriver = GlobalMethods.GetWebDriver(GS.browserType.Chrome);
}
If i do this the chrome opens first test case is completely run and then Firefox is opened. I want to open both at the same time.
[TestInitialize]
public void initilize()
{
WDriver = GlobalMethods.GetWebDriver(GS.browserType.Chrome);
WDriver = GlobalMethods.GetWebDriver(GS.browserType.FireFox);
}
Continue reading...
[TestInitialize]
public void initilize()
{
WDriver = GlobalMethods.GetWebDriver(GS.browserType.Chrome);
}
If i do this the chrome opens first test case is completely run and then Firefox is opened. I want to open both at the same time.
[TestInitialize]
public void initilize()
{
WDriver = GlobalMethods.GetWebDriver(GS.browserType.Chrome);
WDriver = GlobalMethods.GetWebDriver(GS.browserType.FireFox);
}
Continue reading...