我是Protractor的新手,在尝试并行运行多个Protractor测试时遇到了一些问题。
这是我的local.conf.ts文件:
config.capabilities = {
browserName: 'chrome',
args: [ 'lang=en-US' ],
shardTestFiles: true,
maxInstances: 8,
prefs: {
intl: { accept_languages: "en-US" },
},
'goog:chromeOptions': {
w3c: false
}
}
还有其他类似的问题吗?
答案 0 :(得分:1)
我们使用chrome中的多功能实现了并行执行。也许这可以帮助您。
我们更新了config.js如下:
multiCapabilities: [{
'name': 'test1',
'browserName': 'chrome',
specs: ['feature 1', 'feature 2'],
}, {
'name': 'test2',
'browserName': 'chrome',
specs: ['feature 3', 'feature 4'],
},
干杯!