如何在firefox上对您的网站进行自动化测试? (webdriverio)

时间:2018-02-06 11:47:19

标签: node.js selenium selenium-webdriver geckodriver

我是自动化测试的新手。我按照“http://webdriver.io/guide.html”给出的步骤,一切都很顺利。 我安装了 的node.js 硒的服务器独立-3.5.3 geckodriver chromeriver

我的脚本是这样的:

var webdriverio = require(.\\webdriverio');
     var options = {
       desiredCapabilities: {
       browserName: 'C:\Program Files\Mozilla Firefox\firefox'
     }
 };

 webdriverio
   .remote(options)
   .init()
   .url('http://www.google.com')
   .getTitle().then(function(title) {
    console.log('Title was: ' + title);
 })
 .end()
 .catch(function(err) {
    console.log(err);
 });

这很好但是它打开了chrome浏览器,因为我想打开firefox。

1 个答案:

答案 0 :(得分:0)

切换browserName:' C:\ Program Files \ Mozilla Firefox \ firefox' 只是browserName:' firefox'