Class to manage options specific to PhantomJSDriver
Inheritance Hierarchy

OpenQA.Selenium.PhantomJS PhantomJSOptions
Namespace: OpenQA.Selenium.PhantomJS
Assembly: WebDriver (in WebDriver.dll) Version: 2.35.0.0 (2.35.0.0)
Syntax
Examples
PhantomJSOptions options = new PhantomJSOptions();
For use with PhantomJSDriver:
PhantomJSDriver driver = new PhantomJSDriver(options);
For use with RemoteWebDriver:
RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities());
See Also