WebDriver - 如何让 webdriver 等待文本显示(不使用定位器)

WebDriver - How to make the webdriver to wait until text displayed (without using locator)

我在 WebDriver 上执行了一个操作(比如说,我点击了一个按钮),结果是一个文本将显示在页面上。

我们不知道文本的定位器元素,但我们知道将显示什么文本。

请建议一种等待文本显示的方法。

我遇到过WebDriverWait,但需要WebElement等待文本。

进行基于 xpath 文本的搜索。它允许您根据文本

查找元素
// with * we are doing tag indepenedent search. If you know the tag, say it's a `div`, then //div[contains(text(),'Text To find')] can be done
By byXpath = By.xpath("//*[contains(text(),'Text To find')]"); 
WebElement myDynamicElement = (new WebDriverWait(driver, 10))
  .until(ExpectedConditions.presenceOfElementLocated(byXpath));

即使您不知道确切的元素,也可以使用 WebDriverWait。如果预期的文本在页面上只出现 1 次,您可以通过 Xpath 像这样访问它:

WebDriverWait wait = new WebDriverWait(driver, numberOfSeconds);    
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//*[contains(text(), 'my text')]")));

等待在元素中显示的文本:

private ExpectedCondition elementTextDisplayed(WebElement element, String text) {
        return new ExpectedCondition<Boolean>() {
            public Boolean apply(WebDriver driver) {
                return element.getText().equals(text);
            }
        };
    }

 protected void waitForElementTextDisplayed(WebElement element, String text) {
        wait.until(elementTextDisplayed(element, text));
    }

public void waitUntilTextToBePresentInElement(WebElement element, String text){
        wait.until(ExpectedConditions.textToBePresentInElement(element, text));
}