I'm using Poltergeist / Capybara for my tests:
Capybara.register_driver :poltergeist do |app|
Capybara::Poltergeist::Driver.new(app, {
timeout: 60,
phantomjs_options: ['--load-images=no'],
case_insensitive: true # <-- doesn't work
})
end
end
but I noticed that I have to rewrite a lot of tests, as Poltergeists driver seems to be case-sensitive
. Is there anything I can pass to change this?