私はwebdriverioが初めてです。ノードアプリケーション内でどのように構成および使用することになっているのかわかりません。webdriverio がインポートされているときに「スペック」テストを実行するにはどうすればよいですか? それはできますか?
// based on http://webdriver.io/guide.html
var webdriverio = require('webdriverio');
var options = {
desiredCapabilities: {
browserName: 'firefox'
},
specs: './test/spec/**' // why doesn't this work, when it would work when run from the wdio cli
};
webdriverio
.remote(options)
.init()
.url('http://www.google.com')
.title(function(err, res) {
console.log('Title was: ' + res.value);
})
.end();