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 is listeners in selenium webdriver?
Is there an htmlunitdriver for .net?
How to capture screenshot in webdriver?
How to do drag and drop in selenium?
Differentiate between ‘/’ and ‘//’.
Which are the operating systems supported by selenium?
difference between Implicit Wait and Explicit Wait with syntax.?
what are the four parameter you have to pass in selenium?
What is a hybrid framework?
Tell me the meaning of assertion in selenium and what are the types of assertion?
Do you know what are the main advantages of selenium grid?
How to switch between frames in selenium?