- fazlu
- Posts : 6
Join date : 2010-08-31
How to handle link?
Tue May 03, 2011 3:57 am
I am testing a java based web application. on the page when i click on any link ( Data comes from data base) the page is not showing.
Example:
selenium.click("link= My Industries");
selenium.waitForPageToLoad("30000")
Here when I click on My Industries link the page should display. But it is not opening and test is failed.
\
fazlu
Example:
selenium.click("link= My Industries");
selenium.waitForPageToLoad("30000")
Here when I click on My Industries link the page should display. But it is not opening and test is failed.
\
fazlu
- karthikp_17
- Posts : 3
Join date : 2011-08-19
Re: How to handle link?
Mon Aug 29, 2011 4:14 pm
Hi Fazlu,
can you please check out the link is starting with anchor tag or not.
Thanks
can you please check out the link is starting with anchor tag or not.
Thanks
- dev1122
- Posts : 3
Join date : 2011-08-30
Re: How to handle link?
Tue Aug 30, 2011 7:08 am
use selenium.isElementPresent instead of waitForPageToLoad.....
Re: How to handle link?
Thu Sep 15, 2011 6:55 pm
If you are using eclipse, then write a small method:
use this method to wait for different page objects.
- Code:
public void waitForElement(DefaultSelenium selenium, String elementLocator)
throws AssertException, SeleniumException, InterruptedException {
for (int i=0;i<10;i++){
if(selenium.isElementPresent(elementLocator))
break;
else
Thread.sleep(1000);
}
}
use this method to wait for different page objects.
Permissions in this forum:
You cannot reply to topics in this forum