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
Explain what is datadriven framework and keyword driven?
How do you verify if the checkbox/radio is checked or not?
What is selenium? What are different selenium components?
What are the benefits of automation testing?
What are the capabilities of selenium webdriver or google webdriver or selenium 2.0?
Can captcha and bar code reader be automated by using selenium?
Explain the difference between implicit wait and explicit wait.?
What is the framework?
List the different types of drivers in webdriver.
How to install use TestNG in selenium webdriver ?
Describe the purpose of xpath.
What are the annotations used in testng?
What difference do you make between soft vs. Hard to say in selenium?
My application uses ajax heavily how do I use selenium rc to work with ajax operations?
What is the purpose of deselecting all() method?