gpt4 book ai didi

java - 无法点击复选框

转载 作者:行者123 更新时间:2023-12-02 09:15:39 24 4
gpt4 key购买 nike

enter image description here我试图单击一个复选框,但无法执行此操作。isWalkinCheckBox_xpath =//input[@type='checkbox'] (使用这个我可以指向复选框)

if ( !driver.findElement(By.xpath(isWalkinCheckBox_xpath)).isSelected() )
{
Thread.sleep(5000);
driver.findElement(By.xpath(isWalkinCheckBox_xpath)).click();
}

最佳答案

这是因为角度复选框。所以你必须尝试像下面这样的东西。

boolean isSelected = driver.findElemet(By.cssSelector("mat-checkbox input.mat-checkbox-input")).isSelected();
Assert(isSelected )).toBe(true);

关于java - 无法点击复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59007930/

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