如何在量角器中配置硒网格?
我们需要像使用selenium那样创建中心和节点吗?
我们如何将“webdriver”作为中心/节点运行?
谢谢
苛刻
发布于 2017-03-21 15:59:57
尝试下面的配置,
multiCapabilities: [
{
browserName: 'chrome',
seleniumAddress : "http://remotemachine1:4444/wd/hub"
},
{
browserName: 'firefox',
seleniumAddress : "http://remotemachine2:4444/wd/hub"
}
].在执行测试之前,您需要在两台远程计算机上使用webdriver-manger start启动selenium服务器。
https://stackoverflow.com/questions/42924661
复制相似问题