gpt4 book ai didi

java - 如何使用 Selenium WebDriver 和 java 从下拉列表中选择一个项目?

转载 作者:IT老高 更新时间:2023-10-28 20:46:27 29 4
gpt4 key购买 nike

如何使用 Selenium WebDriver 和 Java 从下拉列表中选择一个项目,如性别(例如男性、女性)?

我试过了

WebElement select = driver.findElement(By.id("gender"));
List<WebElement> options = select.findElements(By.tagName("Male"));
for (WebElement option : options) {
if("Germany".equals(option.getText()))
option.click();
}

我上面的代码不起作用。

最佳答案

使用-

new Select(driver.findElement(By.id("gender"))).selectByVisibleText("Germany");

当然需要import org.openqa.selenium.support.ui.Select;

关于java - 如何使用 Selenium WebDriver 和 java 从下拉列表中选择一个项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12940592/

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