Reputation: 1
I'm using UI Vision 2019 (aka Selenium IDE++) for testing purposes. I have to read and modify url in one of my test cases. How can I do that?
I've already gone through a lot of research on internet.
Upvotes: -1
Views: 431
Reputation: 1
executeScript | return document.URL | a or <any variable command | firts parameter | second parameter
now your current url will stor in variable in this case is a value of a is equal to curent url so you can use this variable like ${a}
Upvotes: 0
Reputation: 13
You can go to another URL using the command "open". If you wanna store a url from some object you can use "storeAttribute"
You can find loads of information and examples of this commands here:
Upvotes: -1