Basically, what I\'m trying to do is click on a button that becomes visible when hovering another element (its parent).
I have tried to use trigger.(\'mouseove
trigger.(\'mouseove
I found a way to simulate "mouse hover" using Capybara + the Selenium driver:
module Capybara module Node class Element def hover @session.driver.browser.action.move_to(self.native).perform end end end end