intern.js and Browserstack

故事扮演 提交于 2020-01-01 16:55:05

问题


Intern.js is a great testrunner but it only appears to work with SauceLabs. My company already uses BrowserStack and are very happy with it. I was wondering if anyone has been able to integrate Intern.js with BrowserStack and if so how?


回答1:


You should be able to use BrowserStack with the following Intern configuration for Intern 1:

define({
  capabilities: {
    'browserstack.user': 'your-username',
    'browserstack.key': 'your-access-key'
  },
  webdriver: {
    host: 'hub.browserstack.com'
  },
  useSauceConnect: false
});

or this configuration for Intern 2:

define({
  tunnel: 'BrowserStackTunnel',
  tunnelOptions: {
    username: 'your-username', // or use env var BROWSERSTACK_USERNAME
    accessKey: 'your-access-key' // or use env var BROWSERSTACK_ACCESS_KEY
  }
});



回答2:


These settings work for me:

tunnel: 'BrowserStackTunnel',
webdriver: {
    username: 'your-useranme',
    accessKey: 'your-access-key',
},


来源:https://stackoverflow.com/questions/23304388/intern-js-and-browserstack

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!