I'm trying to set some specific capabilities for a Selenium Webdriver.
In this example i want to change a capability of the webdriver
for the Firefox browser. I'm trying to this in Javascript.
this.driver = new selenium.Builder().forBrowser('firefox').build();
I tried things like calling .withCapabilities()
but it is not working as i expected it and crashes the program.
In specific i want to set the 'acceptSslCerts' capability to true because it is false in default.
Does anybody have an idea on how to this? I'm not able to find anything in the API reference or on the internet.