在接下来的页面中,只显示了三个元素,我必须使用滚动条才能看到其他元素。
我正在使用硒网络驱动程序。
当我尝试单击“第四行”或“第五行”时,抛出了 ElementNotVisibleException。
有什么方法可以移动 scoll 条(或其他方式?)以使“第四行”和“第五行”可见,然后可点击?
<b>Source code of this element:</b>
<pre>
<html><body>
<div style="WIDTH: 215px; HEIGHT: 50px; OVERFLOW: auto; background-color:#66FFCC">
<ul>
<li><div>First Row</div></li>
<li><div>Second Row</div></li>
<li><div>Third Row</div></li>
<li><div>Fourth Row</div></li>
<li><div>Fifth Row</div></li>
</ul>
</div>
</body></html>