开发者

Storing current URL then opening it later in Selenium IDE

开发者 https://www.devze.com 2023-03-19 05:05 出处:网络
the application I am testing generates a dynamic URL that I need to开发者_开发问答 go back to later to perform further actions on.

the application I am testing generates a dynamic URL that I need to开发者_开发问答 go back to later to perform further actions on.

I can store the URL using

storeLocation | url

However, I am not sure how I can later call that URL using the open command

I want something like:

open | {$url} 

however, that does not fetch the stored location in SeleniumIDE.

TIA


The $ needs to be outside the curly braces, like so:

open | ${url}

See here: Parsing URL for querystring values with Selenium IDE

0

精彩评论

暂无评论...
验证码 换一张
取 消