0

如何在硒苏打测试中运行铬?

当我设置browser: "chrome"它无论如何都会打开Firefox。

browser = soda.createClient({
    host: "localhost",
    port: 4444,
    url: "http://localhost:3000",
    browser: "chrome"
 });

此方法甚至不执行:

browser = soda.createClient({
   host: "localhost",
   port: 4444,
   url: "http://localhost:3000",
   browser: "custom /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome"
});
4

1 回答 1

0

根据文档,使用googlechrome而不是chrome

var soda = require('soda');

var browser = soda.createSauceClient({
  'url': 'http://yourwebsite/'
, 'username': ''
, 'access-key': ''
, 'os': 'Windows 2003'
, 'browser': 'googlechrome'
, 'max-duration': 300
});

有关详细信息,请参阅http://learnboost.github.io/soda/ 。事实上,我提供的示例来自他们的网站。此外,您可以尝试 *chrome 或 *google,因为这似乎是受支持的功能

于 2013-06-14T01:43:27.560 回答