量角器+打字稿:硒网格
Protractor+Typescript : Selenium Grid
我们如何在量角器中配置硒网格?
我们是否需要像使用 selenium 那样创建集线器和节点?
我们怎样才能运行把"webdriver-manager"当成hub/node?
谢谢
严酷
试试下面的配置,
multiCapabilities: [
{
browserName: 'chrome',
seleniumAddress : "http://remotemachine1:4444/wd/hub"
},
{
browserName: 'firefox',
seleniumAddress : "http://remotemachine2:4444/wd/hub"
}
].
在执行测试之前,您需要在两台远程计算机上使用 webdriver-manger start
启动 selenium 服务器。
我们如何在量角器中配置硒网格?
我们是否需要像使用 selenium 那样创建集线器和节点?
我们怎样才能运行把"webdriver-manager"当成hub/node?
谢谢
严酷
试试下面的配置,
multiCapabilities: [
{
browserName: 'chrome',
seleniumAddress : "http://remotemachine1:4444/wd/hub"
},
{
browserName: 'firefox',
seleniumAddress : "http://remotemachine2:4444/wd/hub"
}
].
在执行测试之前,您需要在两台远程计算机上使用 webdriver-manger start
启动 selenium 服务器。