Selenium WebDriver: 使用 Selenide 判断元素是否存在
使用 Selenide 的'exists()'方法可以判断元素是否存在。
示例代码如下:
import static com.codeborne.selenide.Selenide.$;
import static com.codeborne.selenide.Condition.*;
public class SelenideExample {
public static void main(String[] args) {
// 判断元素存在
if ($('div.my-element').exists()) {
// 元素存在时执行的操作
System.out.println('Element exists');
}
// 判断元素不存在
if ($('div.my-element').exists().not()) {
// 元素不存在时执行的操作
System.out.println('Element does not exist');
}
}
}
在上面的示例代码中,我们使用'exists()'方法来判断元素是否存在。如果元素存在,'exists()'方法返回'true';如果元素不存在,'exists()'方法返回'false'。在'if'语句中,我们可以根据元素是否存在来执行相应的操作。
原文地址: https://www.cveoy.top/t/topic/qwvZ 著作权归作者所有。请勿转载和采集!