在创建自动化脚本时,我在尝试从下拉列表中选择选项时遇到'Element not visible'
错误
下拉列表的HTML代码。 Drop-down HTML Code
答案 0 :(得分:0)
以下是使用FirefoxDriver的Java(类似于其他编程语言)的简短示例:
WebDriver driver = new FirefoxDriver();
WebElement we = driver.findElement(By.xpath("//select[@id='cfr_eventtype_i']"));
Select select = new Select(we);
select.selectByVisibleText("Meeting");