We are just migrating from capybara-webkit to Poltergeist. Previously we did use capybara-webkit with puffing billy as you can see here:
def use_proxy_with_vcr cassettes_name = nil, cassettes_options = {}
page.driver.browser.set_proxy(:host => Billy.proxy.host, :port => Billy.proxy.port)
page.driver.browser.ignore_ssl_errors
Billy.proxy.strategy.use_cassette cassettes_name, cassettes_options
yield
Billy.proxy.strategy.reset
page.driver.browser.clear_proxy
end
This happens on runtime and I would like to do the same thing with Poltergeist. I realized one could set a proxy and ignore ssl errors by passing CLI options through capybara driver setup with phantomjs_options (https://github.com/jonleighton/poltergeist#customization).
Is it possible to enable/disable proxy and ssl errors during runtime? If yes how?