I\'m able to verify whether or not an element exists and whether or not it is displayed, but can\'t seem to find a way to see whether it is \'clickable\' (Not talking about
to click an (for selenium) unreachable element i alwas use:
public void clickElement(WebElement el) throws InterruptedException { ((JavascriptExecutor) driver).executeScript("arguments[0].click();", el); }