I have a situation when I'm using (using :selenium driver) multiple browsers with Capybara to test my front-end. How can I close some of them using Capybara, when they are not needed?

Thank you!

link|improve this question

feedback

1 Answer

If the tabs/windows are opened using JavaScript, then JavaScript is allowed to close them. You can trigger such JS Capybara test using page.execute_script.

Something along the lines of: page.execute_script "window.close();"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.