Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Mobile Test Automation with Appium

You're reading from  Mobile Test Automation with Appium

Product type Book
Published in Jun 2017
Publisher Packt
ISBN-13 9781787280168
Pages 256 pages
Edition 1st Edition
Languages
Author (1):
Nishant Verma Nishant Verma
Profile icon Nishant Verma

Fluent wait


Fluent wait is a type of explicit wait where we can define polling intervals and ignore certain exceptions to proceed with further script execution even if the element is not found.

So, when we specify a fluent wait, we provide the following:

  • Maximum wait time
  • Polling interval or frequency to check the element
  • Any specific exception to ignore
  • Message that should appear after timeout

A simple example of a fluent wait implementation is as follows:

Wait wait = new FluentWait(appiumDriver)
        .withTimeout(10, TimeUnit.SECONDS)
        .pollingEvery(250, TimeUnit.MILLISECONDS)
        .ignoring(NoSuchElementException.class)
        .ignoring(TimeoutException.class);

wait.until(ExpectedConditions.visibilityOfElementLocated
(By.id("text1")));

Let's implement the preceding in the iChooseAsMyCity(String city) method and re-run the test to see what the results are:

@And("^I choose \"([^\"]*)\" as my city$")
public void iChooseAsMyCity(String city) throws Throwable {
    Wait wait = new FluentWait...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}