是否可以使用Selenium取消选择单选按钮?
如果您不知道什么是硒,请访问此网站:Selenium
我尝试使用Selenium双击单选按钮,但这不起作用:
WebElement select = driver.findElement(By.xpath("//td[1]/input[1]"));
select.click();
select.click();
使用selenium重新加载页面不起作用,因为radio标签中存在checked属性。
答案 0 :(得分:0)
我之前在页面上执行过 JavaScript 来完成此操作:
const radioButton = document.querySelector(selector)
radioButton.checked = false
但我也重构了我的测试,首先跳过单击单选按钮。