是否可以并行 运行 Protractor 测试套件?

Is it possible to run Protractor Test Suites in Parallel?

我有量角器配置文件:

exports.config = {
  suites: {
    BVT : 'e2e/TestSuites/_BVT/*.js',
    Full : 'e2e/TestSuites/Full/**/*.js',
    Smoke : 'e2e/TestSuites/Smoke/*.js',
        Login1 : 'e2e/TestSuites/Login/*.js'
            };
  capabilities: {
     'browserName': 'chrome',
     shardTestFiles: true,
     maxInstances: 3
      };
};

我已经在上面尝试过了,但是我的测试套件不能运行并行,是否可以在chrome浏览器上并行运行 BVT、Full 和 Smoke 测试套件。

当然可以。看看我在套房中 运行 的回归和理智。

protractor Test/config.js --suites regression,sanity