Reputation: 14631
I am using headless gem to run Capybara without opening browser in Linux. Headless uses xvfb. Is there something similar for Windows OS or Mac?
Upvotes: 2
Views: 410
Reputation: 84114
Both capybara-webkit and poltergeist run just fine on a mac.
Poltergeist uses phantomjs to do the heavy lifting, which is available on windows so poltergeist could probably be made to work there, although its documentation says windows isn't supported.
Capybara-webkit lists 32bit windows as a community supported platform, so it should hopefully work there.
Upvotes: 1