Answer Posted / 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 |
Post New Answer View All Answers
From selenium ide how you can execute a single line?
How can we handle pop-ups in rc?
How do you get the attribute of the web element?
What are various ways of locating an element in selenium?
How would one access the value of a side variable named name from within a javascript snippet used as the argument to a selenese command?
What is a hub in selenium grid?
How to switch between frames in selenium?
How can you run selenium server other than the default port 4444?
What are some expected conditions that can be used in explicit waits?
Other than the default port 444 how you can run selenium server?
How to handle a dropdown in selenium webdriver? How to select a value from dropdown?
How do you launch ie/chrome browser?
Which are the commands used for capturing the bitmaps?
How can we find the value of different attributes like name, class, value of an element?
Why testers should opt for selenium and not qtp? Selenium is more popular than qtp as