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 |
How can you fetch an attribute from an element? How to retrieve typed text from a textbox?
what is the difference between absolute path and relative path?
How testing is better than junit?
How do you read data from excel?
How do u get the attribute of the web element?
How do you get the width of the textbox?
how to Handle dropdown?
2 Answers Cryptopy Technologies,
How will u write page object models and data driven model.
How do you handle frames
Do you know how to locate a link using its text in selenium?
How to capture the screenshot of failed testcase only among a set of testcases?
What is the difference between poi and jxl jar?