我有一个网格显示一些记录.当我点击一个记录并检查该元素时,显示它被隐藏,但它在网格中可见.
我的HTML是:
<a href="http://192.168.1.6/eprint_prod_3.8/settings/othercost_add.aspx?type=edit&id=805" title="Plastic Spiral Bind" <div style="float: left; width: 99%; overflow: hidden; height: 15px; overflow: hidden"> Plastic Spiral Bind </div> </a>
上述代码在检查时隐藏,但在网格中可见.
硒代码:
driver.findElement(By.partialLinkText("Plastic Spiral Bind")).click();
解决方法
首先将元素存储在对象中,让我们说元素,然后写下面的代码来点击那个隐藏的元素:
JavascriptExecutor js = (JavascriptExecutor)driver; js.executeScript("arguments[0].click();",element);