我试图同时使用两个浏览器 firefox 和 chrome 运行测试。我用以下命令打开了三个命令行窗口 1. java -jar selenium-server-standalone-2.33.0.jar -role
java -jar selenium-server-standalone-2.33.0.jar -role webdriver -hub localhost:4444/grid/register -browser browserName="chrome", version=8.0, platform=WINDOWS -Dwebdriver.chrome.driver=f: \chromedriver.exe
java -jar selenium-server-standalone-2.33.0.jar -role webdriver -hub localhost:4444/grid/register -port 5566
我在 GridTest.java 文件中有以下代码
public static String browser;
public static void setUp() throws MalformedURLException //throws MalformedURLException
{
// if (browser.equalsIgnoreCase("firefox"))
// {
DesiredCapabilities capability1=DesiredCapabilities.firefox();
capability1= DesiredCapabilities.firefox();
capability1.setBrowserName("firefox");
capability1.setPlatform(Platform.WIN8);
driver=new RemoteWebDriver(new URL(nodeURL), capability1);
// }
//
// if (browser.equalsIgnoreCase("chrome"))
// {
capability1=DesiredCapabilities.chrome();
capability1.setBrowserName("chrome");
capability1.setPlatform(Platform.WIN8);
driver=new RemoteWebDriver(new URL(nodeURL), capability1);
// }
}
如果我必须在 IE 中运行测试,是否必须打开另一个命令行窗口?测试可以与 testng.xml 同时运行吗?请提供解决方案