如何 运行 在 Protractor 套件下进行测试

How to run tests under suite in Protractor

如何在量角器中 运行 套件。这是我的配置文件:

exports.config = {
       seleniumAddress: 'http://localhost:4444/wd/hub',

       suites:
       {
         one: ['test.js'],
         two: ['homePageSpec.js']
       },

       onPrepare: function () {
           browser.driver.manage().window().setSize(1180, 900);

       },
   }

我试过量角器ProtractorConf.js --套件一

我删除了方括号,它起作用了。喜欢:

suites:
       {
         one: 'test.js',
         two: 'homePageSpec.js'
       },