gpt4 book ai didi

java - 无法抛出 NoSuchElementException

转载 作者:行者123 更新时间:2023-12-01 07:44:32 25 4
gpt4 key购买 nike

我正在尝试使用一个元素进行测试,如果找不到该元素,我想继续测试。

我在这部分代码中使用了 NoSuchElementException。

这是我之前尝试过的:

try {
WebElement site_width_full_width = wait.until(
ExpectedConditions.visibilityOfElementLocated(
By.cssSelector("label[for=site_width-full_width]")));
site_width_full_width.click();

Thread.sleep(1000);
System.out.println("FullWidth Label Found!");

} catch (NoSuchElementException e) {
System.out.println("FullWidth Label not found!");
System.out.println(e);
}

但是当该元素不可用时,它不能被抛出到 NoSuchElementException 中,并且所有测试都会中断并失败。

当元素不可用时,解决方案是什么以及如何继续测试。

提前致谢。

最佳答案

您可能会收到不同派生类类型的异常。您可以使用父类“Exception”捕获它,然后进一步深入了解确切的异常类型。

尝试使用;

try
{
WebElement site_width_full_width = wait.until(
ExpectedConditions.visibilityOfElementLocated(
By.cssSelector("label[for=site_width-full_width]")));
site_width_full_width.click();

Thread.sleep(1000);
System.out.println("FullWidth Label Found!");

}
catch (Exception e)
{
if (e instanceof NoSuchElementException)
{
System.out.println("FullWidth Label not found!");
System.out.println(e);
}
else
{
System.out.println("Unexpected exception!");
System.out.println(e);
}
}

希望这有帮助。

关于java - 无法抛出 NoSuchElementException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56215830/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com