How can I add URL's dynamically to Protractor tests?

拜拜、爱过 提交于 2019-12-01 04:20:23

问题


I am trying to use protractor in conjunction with Jenkins. In my jenkins, I need to have URLs dynamically generated.

So while running protractor tests, for example:

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');

  });
});

In above example I want to pass a variable dynamically in place of "http://www.angularjs.org".

I could not find any variables that can be specified in the reference config as well.


回答1:


If I understand the question correctly, you are looking for the environmental variable to configure the base url. In that case, since Protractor is built on WebDriver you should be able to set

webdriver.base.url="http://someurl"

Hopefully this is what you are looking for.




回答2:


You can use baseUrl as config parameter inside exports.config and then use browser.get('/path') inside your test spec. So in config you have e.g. baseUrl: 'http://localhost', so browser.get('/path') would call http://localhost/path.




回答3:


It looks like calling browser.baseUrl = "https://test-url.com" does the trick in onPrepare



来源:https://stackoverflow.com/questions/23062369/how-can-i-add-urls-dynamically-to-protractor-tests

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!