随着WebDriverselenium2.0a2我有麻烦检查如果一个元素是可见的。
WebDriver
WebDriver.findElement返回WebElement,不幸的是没有提供isVisible方法。我可以使用WebElement.clear或WebElement.click两者都抛出一个来解决这个问题ElementNotVisibleException,但这感觉很脏。
WebDriver.findElement
WebElement
isVisible
WebElement.clear
WebElement.click
ElementNotVisibleException
还有更好的主意吗?
element instanceof RenderedWebElement 应该管用。
element instanceof RenderedWebElement