Иван Бишевац
Иван Бишевац

Reputation: 14631

Using Capybara with Headless in Windows OS

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

Answers (1)

Frederick Cheung
Frederick Cheung

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

Related Questions