Selenium 中的 FluentWait 如何实现 until() 方法



Selenium 文档中until()方法的语法如下:

public <V> V until(java.util.function.Function<? super T,V> isTrue)

相同的用法如下:

WebDriver wait = new WebDriver(driver, 20);
WebElement loginButton = wait.until(ExpectedConditions.elementToBeClickable(By.id("lgn-btn")));

我无法与until()方法的语法和用法联系起来。我想知道语法是如何实现的。

是的,我知道泛型,我们用它来了解编译时的错误,以便我们可以在运行时避免 ClassCastException。另外,我知道功能接口,我们用它来实现行为参数化。

我没有得到的是java.util.function.Function<? super T,V> isTrue)ExpectedConditions.elementToBeClickable(By.id("id))之间的等价性.

表达式java.util.function.Function<? super T,V> isTrue是什么意思?

您的问题中提到了四个不同的主题,您可以在下面找到详细信息:

java.util.function

java.util.function 包包括函数接口,这些接口lambda 表达式和方法引用提供目标类型。

一些例子是:

  • BiConsumer<T,U>:表示接受两个输入参数但不返回任何结果的操作。
  • BiFunction<T,U,R>:表示接受两个参数并生成结果的函数。
  • BinaryOperator<T>:表示对两个相同类型的操作数的操作,生成与操作数类型相同的结果。
  • BiPredicate<T,U>:表示两个参数的谓词(布尔值函数)。
  • Consumer<T>:表示接受单个输入参数但不返回任何结果的操作。
  • Function<T,R>:表示接受一个参数并生成结果的函数。

课堂流利等待

public class FluentWait<T>类扩展java.lang.Object并实现Wait<T>这意味着它是 Wait 接口的实现,可以动态配置其超时和轮询间隔。每个 FluentWait 实例都定义了等待条件的最长时间,以及检查条件的频率。此外,用户可以将等待配置为在等待时忽略特定类型的异常,例如在页面上搜索元素时的 NoSuchElementExceptions。

其中一个修饰符是:

Modifier and Type       Method and Description
-----------------       ----------------------
<V> V                   until(java.util.function.Function<? super T,V> isTrue)
Specified by:
until in interface Wait<T>
Type Parameters:
V - The function's expected return type.
Parameters:
isTrue - the parameter to pass to the ExpectedCondition
Returns:
The function's return value if the function returned something different from null or false before the timeout expired.
Throws:
TimeoutException - If the timeout expires.

此实现将此实例的输入值重复应用于给定函数,直到发生以下情况之一:

  • 该函数既不返回 null 也不返回 false
  • 该函数引发未忽略的异常
  • 超时到期
  • 当前线程中断

接口预期条件

public interface ExpectedCondition<T>接口扩展com.google.common.base.Function<WebDriver,T>该接口将预期计算的条件建模为既不为 null 也不为 false。示例包括确定网页是否已加载或元素是否可见。

请注意,预计ExpectedConditions是幂等的。它们将由WebDriverWait在循环中调用,对待测试应用程序状态的任何修改都可能产生意想不到的副作用。


类预期条件

预期条件类是标准预期条件,通常在 Web 驱动程序测试中很有用。

一些使用示例:

  • elementToBeClickable()

    new WebDriverWait(driver, 20).until(ExpectedConditions.elementToBeClickable(By.cssSelector("element_css")));
    
  • visibilityOfElementLocated()

    new WebDriverWait(driver, 20).until(ExpectedConditions.visibilityOfElementLocated(By.cssSelector("element_css")));
    
  • frameToBeAvailableAndSwitchToIt()

    new WebDriverWait(driver, 10).until(ExpectedConditions.frameToBeAvailableAndSwitchToIt(By.cssSelector("element_css")));
    
  • visibilityOfAllElementsLocatedBy()

    new WebDriverWait(driver, 20).until(ExpectedConditions.visibilityOfAllElementsLocatedBy(By.cssSelector("element_css")));
    
  • attributeContains()

    new WebDriverWait(driver, 20).until(ExpectedConditions.attributeContains(driver.findElement(my_element), "src", "https"));
    

相关内容

  • 没有找到相关文章

最新更新