We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Example for an HTTP and SSL proxy
$wd_host = 'http://localhost:4444/wd/hub'; $capabilities = array(WebDriverCapabilityType::BROWSER_NAME => 'firefox', WebDriverCapabilityType::PROXY => array('proxyType' => 'manual', 'httpProxy' => '127.0.0.1:2043', 'sslProxy' => '127.0.0.1:2043')); $driver = new RemoteWebDriver($wd_host, $capabilities);
See https://code.google.com/p/selenium/wiki/DesiredCapabilities#Proxy_JSON_Object for more options.
There was an error while loading. Please reload this page.