Posts by Luiz Eduardo Dornelles Martins • 19 points
2 posts
-
0
votes2
answers260
viewsA: How do I validate element (button) no longer present on the screen (was presented but is no longer) - Selenium Webdriver
I believe this can help you: WebDriverWait wait = new WebDriverWait(driver, 10); WebElement element = wait.until(ExpectedConditions.invisibilityOfElementLocated(By.id("btn-two"))); Thinking about…
-
1
votes1
answer438
viewsA: When to perform e2e testing on your application?
I think in the "When" Testing is something relative to the need of the product. Thinking about productivity and guaranteed testing in a release, it is interesting to have this automated coverage.…