如何使用winium从组合框中获取所选选项?
我使用了selenium的Select类。但它正在抛出像
这样的错误“org.openqa.selenium.UnsupportedCommandException:'getElementTagName' 无效或已实施命令“。
我使用了以下代码:
Select select = new Select(driver.findElement(By.id("cmbLocation")));
String option = select.getFirstSelectedOption().getText();
答案 0 :(得分:0)
尝试一下。
WebElement combo = winDriver.findElementById(autoID);
String option = combo.getAttribute("NameProperty");
NameProperty随所选选项的值而变化。