无法在onPrepare函数中的BaseUrl中设置“#”

时间:2016-06-03 20:02:17

标签: protractor

我正在尝试在量角器配置baseUrl函数中动态设置onPrepare。它确实设置了URL,但在访问页面时不会在上下文中使用哈希(“#”)。

exports.config: {
     framework: 'jasmine2',
     .
     .
     .
     onPrepare: function() {
          browser.baseUrl = "https://google.com/#2/resource";
     } 
}

在上述情况下,它针对https://google.com而不是https://google.com/#2/resource

运行测试

1 个答案:

答案 0 :(得分:1)

尝试从命令行传递--baseUrl =“https://google.com/#2/resource”:

protractor protractor.conf.js --baseUrl="https://google.com/#2/resource"