添加
WebElement dBox1= (new WebDriverWait(driver,10))
.until(ExpectedConditions.elementToBeClickable(By.id("visualizationId")))
.selectbyVisibleText("Center");
在我的代码中收到错误方法selectByVisibleText(string)
未定义类型webelement
答案 0 :(得分:1)
这是编程问题。 elementToBeClickable
预期条件返回没有selectByVisibleText(string)
方法的webelement对象。此方法属于Select
类。阅读here
答案 1 :(得分:1)
请检查导入包。它应该是import org.openqa.selenium.support.ui.Select;