I am trying to click on a element which is visible only after hovering.
browser.actions().mouseMove(element(by.css(".frx-mywork-main-block .frx-mywork-main-body-block3"))).perform();
browser.sleep(5000);
element(by.css(".frx-mywork-main-block .frx-mywork-main-overlay .frx-mywork-main-overlay-body div:nth-child(2) span i")).click();
The class 'frx-mywork-main-overlay' is visible only after the hovering.The action hovering is successfully done while running the script, but it failed on clicking the element after hovering in Chrome browser.But this code is sucessfully clicking while running in Firefox.In chrome, it says element is not clickable at point (259, 504).i have attached the screenshot of the html page below.
How can i solve this?Thanks in advance.