我想从下拉列表中捕获未选择的值。 请帮帮我
答案 0 :(得分:0)
Select sel = new Select(driver.findElement(By.id("")));
List<WebElement> alloption = sel.getOptions();
for (WebElement webElement : alloption) {
boolean checkele=webElement.isSelected();
if(checkele==false) {
System.out.println("non-selected elements : "+webElement.getText());
}
}