从winium中的combobox中获取所选文本

时间:2017-09-21 05:54:15

标签: selenium-webdriver combobox

如何使用winium从组合框中获取所选选项?

我使用了selenium的Select类。但它正在抛出像

这样的错误
  

“org.openqa.selenium.UnsupportedCommandException:'getElementTagName'   无效或已实施命令“。

我使用了以下代码:

Select select = new Select(driver.findElement(By.id("cmbLocation")));
String option = select.getFirstSelectedOption().getText();

1 个答案:

答案 0 :(得分:0)

尝试一下。

WebElement combo = winDriver.findElementById(autoID);
String option = combo.getAttribute("NameProperty");

NameProperty随所选选项的值而变化。