1

我想从 Gruntfile.js 参数化我的 webdriverio 规范。目标是在 Grunt 中指定主机、端口、用户名和密码以及可能的其他参数,并从规范文件中读取它们。

从https://www.npmjs.com/package/grunt-webdriver#overview阅读 Source Labs 示例,我在选项中设置了主机和端口。但是在配置端口时出现以下错误:

/Users/sandro/Developing/Projekte/sling/svn/contrib/explorers/resourceeditor/frontend/node_modules/grunt-webdriver/node_modules/webdriverio/lib/utils/PromiseHandler.js:154
             throw error;
                   RuntimeError: RuntimeError

这就是为什么我认为必须有其他方法来做到这一点。我的 Gruntfile.js 看起来像这样:

module.exports = function(grunt) {

var e2eTestSpecFolder = '../src/test/javascript/e2e/spec/**/*spec.js';

grunt.initConfig({
...
    webdriver: {
        options: {
            host: 'localhost',
            port: 8080
        },
        chrome: {
            tests: [e2eTestSpecFolder],
            options: {
                // overwrite default settings 
                desiredCapabilities: {
                    browserName: 'chrome'
                }
            }
        },
        firefox: {
            tests: [e2eTestSpecFolder],
            options: {
                // overwrite default settings 
                desiredCapabilities: {
                    browserName: 'firefox'
                }
            }
        }
    }
})

...
grunt.registerTask('desktop_build', ['webdriver:chrome', 'webdriver:firefox']);
};

提前感谢您的任何提示!

更新:我使用以下版本:

  • 咕噜声:v0.1.13

  • 咕噜声:v0.4.5

  • 网络驱动程序管理器:3.0.0

  • 咕噜-webdriver:0.4.8

4

1 回答 1

1

好的,我有你的问题:)

这些“主机”和“端口”参数是预定义的参数,并且用于其他目的(它将执行测试的主机和端口,并且您正在重新定义端口 - 这就是它们失败的原因,例如这里 - https://github.com/webdriverio/webdriverio/blob/master/examples/webdriverio.saucelabs.js你可以看到它们用于连接到 saucelabs)。为此,最简单的解决方案是定义 ENV 变量并为它们设置一些默认值(但实际上您不应该在 gruntfile 中这样做,这不是必需的)您可以在文件中定义它,您可以在其中放置这些变量第一次,比如:

testHost: (typeof(process.env.TEST_HOST) === 'undefined') ? 'http://localhost' : process.env.TEST_HOST;

之后,如果需要将 TEST_HOST 作为环境变量,您只需提供它:

    Linux: sh~ TEST_HOST=http://google.com
grunt task
    Win: export TEST_HOST=http://google.com
grunt task

如果您不设置变量,则“ http://localhost ”将是默认变量。

于 2015-04-06T16:39:45.447 回答