42

在我编写的测试中,如果我想断言页面上存在 WebElement,我可以做一个简单的事情:

driver.findElement(By.linkText("Test Search"));

如果它存在,这将通过,如果它不存在,它将被炸毁。但现在我想断言链接不存在。我不清楚如何执行此操作,因为上面的代码不返回布尔值。

编辑这就是我想出自己的修复方法的方式,我想知道是否还有更好的方法。

public static void assertLinkNotPresent (WebDriver driver, String text) throws Exception {
List<WebElement> bob = driver.findElements(By.linkText(text));
  if (bob.isEmpty() == false) {
    throw new Exception (text + " (Link is present)");
  }
}
4

16 回答 16

43

这样做更容易:

driver.findElements(By.linkText("myLinkText")).size() < 1
于 2012-11-30T14:34:22.310 回答
12

我认为如果没有这样的元素,你可以抓住org.openqa.selenium.NoSuchElementException它会被抛出:driver.findElement

import org.openqa.selenium.NoSuchElementException;

....

public static void assertLinkNotPresent(WebDriver driver, String text) {
    try {
        driver.findElement(By.linkText(text));
        fail("Link with text <" + text + "> is present");
    } catch (NoSuchElementException ex) { 
        /* do nothing, link is not present, assert is passed */ 
    }
}
于 2010-07-20T09:01:36.463 回答
11

不确定您指的是哪个版本的 selenium,但是 selenium * 中的一些命令现在可以执行此操作: http ://release.seleniumhq.org/selenium-core/0.8.0/reference.html

  • assertNotSomethingSelected
  • assertTextNotPresent

ETC..

于 2012-02-17T01:29:24.183 回答
8

有一个类叫做ExpectedConditions

  By loc = ...
  Boolean notPresent = ExpectedConditions.not(ExpectedConditions.presenceOfElementLocated(loc)).apply(getDriver());
  Assert.assertTrue(notPresent);
于 2013-06-10T14:35:48.757 回答
4

尝试这个 -

private boolean verifyElementAbsent(String locator) throws Exception {
    try {
        driver.findElement(By.xpath(locator));
        System.out.println("Element Present");
        return false;

    } catch (NoSuchElementException e) {
        System.out.println("Element absent");
        return true;
    }
}
于 2012-10-01T07:01:27.437 回答
4

使用 Selenium Webdriver 将是这样的:

assertTrue(!isElementPresent(By.linkText("Empresas en Misión")));
于 2013-10-03T22:52:16.183 回答
2

它看起来findElements()只有在找到至少一个元素时才会快速返回。否则,它会等待隐式等待超时,然后返回零个元素 - 就像findElement().

为了保持良好的测试速度,这个例子暂时缩短了隐式等待,同时等待元素消失:

static final int TIMEOUT = 10;

public void checkGone(String id) {
    FluentWait<WebDriver> wait = new WebDriverWait(driver, TIMEOUT)
            .ignoring(StaleElementReferenceException.class);

    driver.manage().timeouts().implicitlyWait(1, TimeUnit.SECONDS);
    try {
        wait.until(ExpectedConditions.numberOfElementsToBe(By.id(id), 0));
    } finally {
        resetTimeout();
    }
}

void resetTimeout() {
    driver.manage().timeouts().implicitlyWait(TIMEOUT, TimeUnit.SECONDS);
}

仍在寻找一种完全避免超时的方法......

于 2017-10-04T21:18:34.933 回答
1
boolean titleTextfield = driver.findElement(By.id("widget_polarisCommunityInput_113_title")).isDisplayed();
assertFalse(titleTextfield, "Title text field present which is not expected");
于 2012-07-31T06:28:52.863 回答
1

您可以为此使用Arquillian Graphene框架。所以你的例子可能是

Graphene.element(By.linkText(text)).isPresent().apply(driver));

它还为您提供了一堆很好的 API,用于处理 Ajax、流畅的等待、页面对象、片段等。它无疑大大简化了基于 Selenium 的测试开发。

于 2013-06-28T09:32:08.060 回答
0

这对我来说是最好的方法

public boolean isElementVisible(WebElement element) {
    try { return element.isDisplayed(); } catch (Exception ignored) { return false; }
}
于 2022-01-31T17:29:22.297 回答
0

不是对这个问题的答案,而是对潜在任务的一个想法:

当您的站点逻辑不应该显示某个元素时,您可以插入一个不可见的“标志”元素来检查。

if condition
    renderElement()
else
    renderElementNotShownFlag() // used by Selenium test
于 2018-09-20T13:47:12.280 回答
0

对于 node.js,我发现以下是等待元素不再存在的有效方法:

// variable to hold loop limit
    var limit = 5;
// variable to hold the loop count
    var tries = 0;
        var retry = driver.findElements(By.xpath(selector));
            while(retry.size > 0 && tries < limit){
                driver.sleep(timeout / 10)
                tries++;
                retry = driver.findElements(By.xpath(selector))
            }
于 2016-05-25T07:07:35.393 回答
0

请在下面找到使用 Selenium "until.stalenessOf" 和 Jasmine 断言的示例。当元素不再附加到 DOM 时,它返回 true。

const { Builder, By, Key, until } = require('selenium-webdriver');

it('should not find element', async () => {
   const waitTime = 10000;
   const el = await driver.wait( until.elementLocated(By.css('#my-id')), waitTime);
   const isRemoved = await driver.wait(until.stalenessOf(el), waitTime);

   expect(isRemoved).toBe(true);
});

参考:Selenium:Until Doc

于 2019-05-01T07:59:59.720 回答
0

我发现最好的方法 - 并且在 Allure 报告中显示为失败 - 是尝试捕获 findelement 并在 catch 块中,将 assertTrue 设置为 false,如下所示:

    try {
        element = driver.findElement(By.linkText("Test Search"));
    }catch(Exception e) {
        assertTrue(false, "Test Search link was not displayed");
    }
于 2020-05-07T04:42:50.357 回答
-1

findElement 将检查 html 源代码,即使该元素未显示,也会返回 true。要检查元素是否显示,请使用 -

private boolean verifyElementAbsent(String locator) throws Exception {

        boolean visible = driver.findElement(By.xpath(locator)).isDisplayed();
        boolean result = !visible;
        System.out.println(result);
        return result;
}
于 2012-10-01T09:23:30.000 回答
-1

适用于 appium 1.6.0 及以上版本

    WebElement button = (new WebDriverWait(driver, 10).until(ExpectedConditions.presenceOfElementLocated(By.xpath("//XCUIElementTypeButton[@name='your button']"))));
    button.click();

    Assert.assertTrue(!button.isDisplayed());
于 2016-11-29T09:43:33.793 回答