// get invisible element
Actions action = new Actions(driver);
WebElement theRow = page.getInvisibleElement();
action.moveToElement(theRow).perform();
page.getInvisibleElement().click();
原文:http://www.cnblogs.com/kill0001000/p/4577244.html