量角器因multiCapabilities而失败,但只在一次测试运行时通过

时间:2016-01-05 16:49:28

标签: angularjs protractor gulp-protractor

我遇到了使用' multiCapabilities'进行测试的问题。我的multiCapabilities配置是:

   multiCapabilities: [{
    browserName: 'chrome',
    'name': 'LMB Decision Engine - UI Automation',
    'tunnel-identifier': 'nonprod',
    'parent-tunnel': 'LMSauceLabs'
  }, {
    browserName: 'chrome',
    'name': 'LMB Decision Engine - UI Automation',
    'tunnel-identifier': 'nonprod',
    'parent-tunnel': 'LMSauceLabs'
  }],

我得到的回应是:

[chrome #2]     Failed: stale element reference: element is not attached to the page document
[chrome #2]       (Session info: chrome=47.0.2526.73)
[chrome #2]       (Driver info: chromedriver=2.20.353141 (da3cb4b52d3a04ce079546eac4dc96182f58602b),platform=Linux 3.13.0-32-generic x86)

但是,当我使用此功能配置运行时,它会通过:

  capabilities : {
    'browserName': 'firefox',
    'name': 'LMB Decision Engine - UI Automation',
    'tunnel-identifier': 'nonprod',
    'parent-tunnel': 'LMSauceLabs'
  },

并行运行时是否有人见过这个问题?我已经尝试了所有不同的浏览器组合,并单独禁用所有插件以查看它们是否与multiCapabilities不兼容,但问题似乎只是单独在并行版本中运行。

谢谢, 泰勒

1 个答案:

答案 0 :(得分:3)

如果您尝试在chrome中运行并行测试,可以在多功能配置中使用shardTestFiles:true,如下所示:

multiCapabilities: [
    {
    browserName: 'chrome',
    shardTestFiles: true, 
     // change this to the number of instances you want to run
    maxInstances:2
}];