Hüseyin Tosun
Hüseyin Tosun

Reputation: 1

How to read and modify url with UI Vision 2019 (aka Selenium IDE++)

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

Answers (2)

ali raza
ali raza

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

Santiago Ram&#237;rez
Santiago Ram&#237;rez

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:

open

storeAttribute

Upvotes: -1

Related Questions