当前位置:  开发笔记 > 运维 > 正文

如何动态地将URL添加到Protractor测试中?

如何解决《如何动态地将URL添加到Protractor测试中?》经验,为你挑选了1个好方法。

我正在尝试将量角器与Jenkins结合使用.在我的jenkins中,我需要动态生成URL.

因此,在运行量角器测试时,例如:

describe('angularjs homepage', function() {
  it('should greet the named user', function() {
    // Load the AngularJS homepage.
    browser.get('http://www.angularjs.org');

    element(by.model('yourName')).sendKeys('testUser');

  });
});

在上面的例子中,我想动态地传递一个变量来代替" http://www.angularjs.org ".

我找不到任何可以在参考配置中指定的变量.



1> Sebastian..:

您可以baseUrl在里面使用config参数exports.config,然后browser.get('/path')在测试规范中使用.所以在配置中你有baseUrl: 'http://localhost',所以browser.get('/path')会打电话http://localhost/path.

推荐阅读
可爱的天使keven_464
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有