我正在Opera浏览器中尝试自动化,但无法正常工作。
我收到以下错误消息:
'无法创建新服务:OperaDriverService \ nBuild
这是我的Opera的nightwatch.json代码:
"local-opera": {
"launch_url": "http://localhost",
"selenium_host": "127.0.0.1",
"selenium_port": 4444,
"silent": true,
"output": true,
"screenshots": {
"enabled": false,
"path": ""
},
"skip_testcases_on_fail": false,
"desiredCapabilities": {
"browserName": "opera",
"javascriptEnabled": true,
"acceptSslCerts": true,
"operaOptions": {
"binary": "C:/Users/userName/AppData/Local/Programs/Opera/launcher.exe"
}
}
}
我能够在Chrome,Firefox,Edge和IE中自动测试我的应用程序,但我只发现Opera出现问题。