View Javadoc

1   package com.atlassian.webdriver.waiter.webdriver.function;
2   
3   import com.google.common.base.Function;
4   import org.openqa.selenium.WebDriver;
5   
6   /**
7    * @since 2.1.0
8    */
9   public interface ConditionFunction extends Function<WebDriver, Boolean>
10  {
11  }