我正在尝试在量角器配置的baseUrl
函数中动态设置onPrepare
。它确实设置了URL,但在访问页面时不会在上下文中使用哈希(“#”)。
exports.config: {
framework: 'jasmine2',
.
.
.
onPrepare: function() {
browser.baseUrl = "https://google.com/#2/resource";
}
}
在上述情况下,它针对https://google.com
而不是https://google.com/#2/resource
答案 0 :(得分:1)
尝试从命令行传递--baseUrl =“https://google.com/#2/resource”:
protractor protractor.conf.js --baseUrl="https://google.com/#2/resource"