我通过运行以下命令开始我的量角器测试:
protractor protractor.conf.js --params.baseUrl=http://www.google.com --suite all
我想运行一个依赖于一个参数(在本例中为 baseUrl)的“启动前”功能。这可能吗?
exports.config = {
seleniumServerJar: './node_modules/protractor/selenium/selenium-server-standalone-2.45.0.jar',
seleniumPort: 4455,
suites: {
all: 'test/*/*.js',
},
capabilities: {
'browserName': 'firefox'
},
beforeLaunch: function() {
console.log('I want to access my baseUrl parameter here: ' + config.params.baseUrl);
},
onPrepare: function() {
require('jasmine-reporters');
jasmine.getEnv().addReporter(
new jasmine.JUnitXmlReporter('output/xmloutput', true, true));
}
};
如果我运行它,我会得到一个 ReferenceError,因为未定义配置。我该怎么做?这甚至可能吗?