我从下拉列表中选择一个值,需要读取标签。我无法让它发挥作用。任何帮助表示赞赏。
WebElement stSelection = driver.findElement(By.id("ddlGlobalStoreNumber"));
Select stSelect = new Select(stSelection); // Create a select object from select class for dropdown selection
stSelect.selectByIndex(16);
System.out.println(stSelect.getOptions().get(16).getText());
此行包含System.out
会引发错误:
org.openqa.selenium.StaleElementReferenceException