Using Actions is giving exception as unsupportedCommandException.
Tried to do something like this:
Actions action = new Actions(driver);
action.moveToElement(element).build().perform();
driver.findElement(By.linkText("All Actions")).click();
Element
is the webElement
which I tried to hover.
Tried this also:
((JavascriptExecutor) driver).executeScript("arguments[0].focus();",element);
((JavascriptExecutor) driver).executeScript("arguments[0].click();", element);
But no luck.
I am working with seleniumbox and using latest version of selenium 3.9.1.