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 do you know about Selenese?
What do you know about Selenium IDE?
What kind of testing does selenium support?
List the different types of drivers available in web drivers.
Explain me what are the main advantages of selenium?
What is pom (page object model)?
What are the types of listeners in testng?
Explain what is the difference between find elements () and find element ()?
When should one use selenium grid?
What type of tests have you automated?
How you can switch between frames?
What are the significant changes in upgrades in various selenium versions?