我是AngularJS的新手。我正在努力学习,用Protractor做一些测试。我一直在查看所提供的信息。 当我想将Selenium 3与量角器一起使用时,我陷入了困境,
webdriver-manager update
我尝试使用上面的命令进行更新,仍然使用selenium 2.53.1
我有可能将硒3与量角器一起使用吗?
答案 0 :(得分:1)
我做了
webdriver-manager --versions.standalone=3.0.1 update
然后我必须提供以下选项
seleniumServerJar:'node_modules/protractor/node_modules/webdriver-manager/selenium/selenium-server-standalone-3.0.1.jar'
答案 1 :(得分:0)
您可以修改webdriver-manager使用的config.json
来更新您的selenium版本。
您可以在config.json
路径中找到/node_modules/protractor/config.json
文件。
打开文件后,您将看到如下内容,
{
"webdriverVersions": {
"selenium": "2.52",
"chromedriver": "2.21",
"iedriver": "2.52.0"
}
}
在上述对象中,将2.52
中的硒版本替换为3.0.1
并保存。现在在终端中运行webdriver-manager update
。这将下载config.json文件中提到的新版selenium jar文件。