I am using Ruby bindings for Webdriver and need to set a particular capability when creating a webdriver instance for IE. The capabilitiy is :ignore_zoom_setting. However, the options I can pass through to the driver are limited to :timeout, :port, :http_client, :introduce_flakiness_by_ignoring_security_domains, and :native_events.
The only way I've found of passing a desired capabilities object is if I use remote webdriver. Can I somehow call Selenium::WebDriver.for :ie and pass in capabilities as well?
Mark