无法在量角器中启动多个浏览器实例

Unable to launch multiple browser instances in Protractor

我的配置文件正在启动 chrome 的 1 个实例。我期待它打开2。 这是我的配置多重功能。

multiCapabilities: [
{
browserName: 'chrome',
logName: 'Chrome - Suite 1',
shardTestFiles: false,
maxInstances: 1,
maxSessions: 1,
specs: ['test/protractor/test.js']
},
{
browserName: 'Chrome',
logName: 'Chrome - Suite 2',
shardTestFiles: false,
maxInstances: 1,
maxSessions: 1,
specs: ['test/protractor/test2.js']
}
],

现在我遇到如下错误:

    /usr/local/lib/node_modules/protractor/node_modules/selenium- 
webdriver/lib/error.js:546
      throw new ctor(message);
            ^
SessionNotCreatedError: Unable to create session from {
"desiredCapabilities": {
  "specs": [
    "test\u002fprotractor\u002ftest2.js"
  ],
  "maxSessions": 1,
  "logName": "Chrome - Suite 2",
  "count": 1,
  "browserName": "Chrome",
  "maxInstances": 1,
  "shardTestFiles": false
},
"capabilities": {
  "firstMatch": [
    {
      "browserName": "Chrome"
    }
  ]
}
}
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018- 
11 
14T08:25:53'
System info: host: 'Siva.local', ip: 
'fe80:0:0:0:4b7:1bb3:a4c7:925f%en0', os.name: 'Mac OS X', os.arch: 
'x86_64', os.version: '10.14', java.version: '1.8.0_131'
Driver info: driver.version: unknown

非常欢迎任何让它启动 2 个实例的帮助。

让你的 config 像下面这样。

exports.config = {

  // Capabilities to be passed to the webdriver instance.
  capabilities: {
    browserName: 'chrome',

    // allows different specs to run in parallel.
    // If this is set to be true, specs will be sharded by file
    // (i.e. all files to be run by this set of capabilities will run in parallel).
    // Default is false.
    shardTestFiles: true,

    // Maximum number of browser instances that can run in parallel for this
    // set of capabilities. This is only needed if shardTestFiles is true.
    // Default is 1.
    maxInstances: 2,       
  },

  // Spec patterns are relative to the current working directly when
  // protractor is called.
  specs: ['spec.js', 'spec2.js'],
}

希望对你有帮助..