Pages

Search This Blog

Saturday, June 5, 2010

How to get current page url in selenium

There are some situations where we need to know the url of current page.

selenium IDE

<tr>
<td>storeLocation</td>
<td>url</td>
<td></td>
</tr>
<tr>
<td>echo</td>
<td>${url}</td>
<td></td>
</tr>



Selenium RC

String url = selenium.getLocation();
System.out.println(url);

4 comments:

  1. Thanks a lot!! i´ve just looking for that!!! regards!

    ReplyDelete
  2. How can i verify an attribut in URL

    ReplyDelete
  3. Exactly what I looking for! Many thanks.

    ReplyDelete