我正在使用WebDriver.io npm pakage运行gulp-wdio测试
在selenium-standalone上
我在gulp中运行的代码是:
gulp.task('e2e', function () {
return gulp.src('wdio.conf.js')
.pipe(wdio({
wdio: {
specs: './test/features/**/*.feature'
}
}));
});
我的wdio.conf.js以此方式定义浏览器:
capabilities: [
{
browserName: 'internet explorer',
version: 'ANY'
}
],
How ever the typing is very slow,我在互联网上发现运行32位版本的Web驱动程序可以解决此问题,但是我却找不到如何配置功能或默认情况下运行IE32位驱动程序的其他地方...
任何帮助将不胜感激 @:-)
最佳答案
经过2天的研究,我找到了解决方案!
有一个配置文件需要独立提供给 Selenium
如这个Example所示
因此,我们的最终设置是通过以下方式完成的:
我们有一个名为wdio.browsers.setup.js的配置文件,其中包含浏览器的设置:
module.exports = {
baseURL: 'https://selenium-release.storage.googleapis.com',
version: '3.3.1',
drivers: {
chrome: {
version: '2.29',
arch: process.arch,
// - Recent versions of the driver: https://sites.google.com/a/chromium.org/chromedriver/
baseURL: 'https://chromedriver.storage.googleapis.com'
},
ie: {
version: '3.0.0',
arch: 'ia32',
// - Recent versions of the driver: http://selenium-release.storage.googleapis.com/index.html
baseURL: 'https://selenium-release.storage.googleapis.com'
},
firefox: {
version: '0.15.0',
arch: process.arch,
baseURL: 'https://github.com/mozilla/geckodriver/releases/download'
}
}
};
然后在wdio.conf.js中加载它并分配给特殊参数
let browsersSetup = require('./wdio.browsers.setup');
exports.config = {
seleniumArgs: browsersSetup,
seleniumInstallArgs: browsersSetup,
之后,一切正常@ :-)
注意:如果您已全局安装Web驱动程序,请首先将其删除:
C:\Users\%USERNAME%\AppData\Roaming\npm
然后,您可以使用以下命令运行本地安装:
./node_modules/.bin/selenium-standalone install --config=../../wdio.browsers.setup.js