Skip to content

Instantly share code, notes, and snippets.

@NaN1488
Created April 10, 2013 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save NaN1488/5358556 to your computer and use it in GitHub Desktop.
Save NaN1488/5358556 to your computer and use it in GitHub Desktop.
this emulate hover action without using execute_script
# Example:
#
# find("span.assign").hover
#
module Capybara
module Node
class Element
def hover
@session.driver.browser.action.move_to(self.native).perform
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment