how to test page loaded successfully?
Answers were Sorted based on User's Feedback
Answer / surya
using WebDriverWait we can check as we can wait until completion of expected condition.
ex:
WebDriverWait wait = new WebDriverWait(driver, 10);
WebElement elem = driver.findElement(By.id("myInvisibleElement"));
elem.click();
wait.until(ExpectedConditions.visibilityOf(elem));
please correct me if i m wrong.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / dolly
We can ensure that the page is loaded completely by using javascriptwait method, by defining the wait time to check the condition.
(“return document.readyState”.equal(complete) ---boolean(Y/N) – true means its loaded completely.
Using TRY n Catch method (catch the exception saying page did not load in the stipulated time)
| Is This Answer Correct ? | 1 Yes | 0 No |
What are the advantages of pom (page object model)?
What are the capabilities of selenium ide?
How can we type text in a textbox element using selenium?
Explain what is framework and what are the frameworks available in rc?
What is desired capability? How is it useful in terms of selenium?
What is the command to insert text into the HTML text box using Selenium?
What is the main difference between web-driver and rc?
How to delete cookies in selenium?
What is the difference between implicit wait and explicit wait?
What is Dynamic xpath in selenium ?
What are the different components in selenium?
What are desiredcapabilities in selenium webdriver?