Problem
Trying to run your cucumber tests and interact with links,buttons in a page you have the following error page:
1 |
Element is not currently visible and so may not be interacted with (Selenium::WebDriver::Error::ElementNotVisibleError) |
Solution
Try to use the :visible => true in your matchers, finders like:
1 |
find('#id_name',:visible => true).click |