如何使用量角器脚本使用Browserstack的移动设备测试功能?
我写了一个spec和一个配置文件,使用量角器和browserstack运行测试不同浏览器上的网站。我正在尝试通过编辑配置来测试设备来利用browserstack的移动设备测试功能。 当量角器filename-conf运行时,返回以下错误。 “WebDriverError:尚未implementd请帮助我们:HTTTP://appium.io/get-involved.html”
这里是试图运行在移动网络浏览器的规格的配置。
exports.config = {
seleniumAddress: 'http://hub.browserstack.com/wd/hub',
specs: [
'example-spec.js'
],
multiCapabilities: [{
browserName : 'iPhone',
'platform' : 'MAC',
'device' : 'iPhone 5S',
'deviceOrientation' : 'portait',
'project' : 'Isengard Mobile Automation',
'build' : 'Mobile Test',
'browserstack.user': 'username',
'browserstack.key': 'keyname',
acceptSslCerts: 'true'
directConnect: true
}],
我需要appium来利用browserstacks移动测试吗?