Protractor - run multiple tests in parallel on different browsers

前端 未结 6 1034
再見小時候
再見小時候 2020-12-05 09:47

I can\'t find any information on how to set this up, but it seems like a pretty basic concept, so I\'m sure there\'s an answer out there.

I know how to run protrac

6条回答
  •  醉梦人生
    2020-12-05 10:13

    There's new option called multiCapabilities for that:

    multiCapabilities: [{
      'browserName': 'chrome'
    }, {
      'browserName': 'firefox'
    }],
    

    Here's a complete example.

提交回复
热议问题