请有人帮助我如何在Selenium WebDriver中找到隐形元素。我想从下拉列表中选择一个选项,我的目标是通过ID找到元素。
但是在HTML标记中,元素不可见以选择该选项。我验证了很多问题,因为他们提到使用JavascriptExceutor。
任何人都可以帮我一下html标签的java脚本:
<select id="periodId" name="period" style="display: none;">
<option value="l4w">Last 4 Weeks</option>
<option value="l52w">Last 52 Weeks</option>
<option value="daterange">Date Range</option>
<option value="weekrange">Week Range</option>
<option selected="" value="monthrange">Month Range</option>
<option value="yeartodate">Year To Date</option>
</select>
答案 0 :(得分:2)
完全赞同罗斯帕特森,但如果您仍想尝试上述情况,这可能会有效......
((JavascriptExecutor)driver).executeScript("$('select#periodId').click();");
答案 1 :(得分:0)
JavascriptExecutor executor = (JavascriptExecutor)driver;
executor.executeScript("document.getElementById('periodId').style.display='inline';");
Select select = new Select(driver.findElement(By.id("periodId")));
select.selectByVisibleText("Last 4 Weeks");
executor.executeScript("document.getElementById('periodId').style.display='none';");