gpt4 book ai didi

java - 什么是复选框的 Web 元素(基于文本的 HTML)

转载 作者:行者123 更新时间:2023-12-02 02:06:57 26 4
gpt4 key购买 nike

我正在编写一些代码,但我找不到复选框的定位器,请任何人帮助我找到定位器!我发布了下面编写的图像和示例代码。

Img

WebElement target = driver.findElement(By.id("term_and_conditions"));
target.click();

最佳答案

要单击复选框,您可以使用以下任一选项 Locator Strategies :

  • css选择器:

    new WebDriverWait(driver, 20).until(ExpectedConditions.elementToBeClickable(By.cssSelector("label[for='term_and_conditions']"))).click();
  • xpath:

    new WebDriverWait(driver, 20).until(ExpectedConditions.elementToBeClickable(By.xpath("//label[@for='term_and_conditions']"))).click();

关于java - 什么是复选框的 Web 元素(基于文本的 HTML),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57353460/

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