尝试在chrome和firefox中运行并行测试。在执行期间,正在启动另一个Chrome浏览器而不是firefox浏览器,它被忽略。以下是正在使用的文件版本 操作系统 - Ubuntu 16.04 LTS, Firefox版本 - 54, 壁虎版 - v0.18, Chrome版本-60.0.311, Chrome驱动程序 - 2.53
的testng.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="AutomationSuite" parallel="tests">
<test name="TestCaratLaneInFireFox">
<parameter name="node" value="http://*******:4444/wd/hub"/>
<parameter name="browser" value="Firefox"/>
<packages>
<package name="script"/>
</packages>
</test>
<test name="TestCaratLaneInChrome">
<parameter name="node" value="http://****:4444/wd/hub"/>
<parameter name="browser" value="chrome"/>
<packages>
<package name="script"/>
</packages>
</test>
</suite>
BaseTest.Java
public class BaseTest implements IAutoConst {
public WebDriver driver;
static {
System.setProperty(CHROME_KEY, CHROME_VALUE);
System.setProperty(GECKO_KEY, GECKO_VALUE);
}
@Parameters({"node","browser"})
@BeforeMethod
public void openApplication(String node,String browser) throws MalformedURLException {
// ChromeOptions options = new ChromeOptions();
// options.addArguments("--disable-notifications");
URL system = new URL(node);
DesiredCapabilities whichBrowser = new DesiredCapabilities();
whichBrowser.setBrowserName(browser);
driver = new RemoteWebDriver(system,whichBrowser);
driver.get(URL);
driver.manage().timeouts().implicitlyWait(ITO, TimeUnit.SECONDS);
//driver.manage().window().maximize();
}
@AfterMethod
public void closeApplication() {
driver.close();
}
}
答案 0 :(得分:0)
保存在集线器中的Gecko驱动程序版本与节点中的版本不同。因此它阻止了Firefox的发布。