Tuesday, November 8, 2011

How to get current page url in selenium

How to get current page url in selenium, Selenium Notes,Examples, Videos by.www.laxmiroy.blogspot.com/


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

No comments:

Post a Comment