最佳答案
使用 Selenium 2.0 a2中的 WebDriver
,我在检查元素是否可见时遇到了麻烦。
WebDriver.findElement
返回一个 WebElement
,遗憾的是它没有提供 isVisible
方法。我可以通过使用 WebElement.clear
或者 WebElement.click
来绕过这个问题,它们都抛出一个 ElementNotVisibleException
,但是这个感觉很脏。
有更好的主意吗?