Class to manage options specific to SafariDriver
Inheritance Hierarchy
OpenQA.SeleniumDriverOptions
OpenQA.Selenium.SafariSafariOptions
Namespace: OpenQA.Selenium.Safari
Assembly: WebDriver (in WebDriver.dll) Version: 3.1.0
Syntax
The SafariOptions type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | SafariOptions |
Initializes a new instance of the SafariOptions class.
|
Methods
Name | Description | |
---|---|---|
![]() | AddAdditionalCapability |
Provides a means to add additional capabilities not yet added as type safe options
for the Safari driver.
(Overrides DriverOptionsAddAdditionalCapability(String, Object).) |
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GenerateLoggingPreferencesDictionary |
Generates the logging preferences dictionary for transmission as a desired capability.
(Inherited from DriverOptions.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | SetLoggingPreference |
Sets the logging preferences for this driver.
(Inherited from DriverOptions.) |
![]() | ToCapabilities |
Returns ICapabilities for Safari with these options included as
capabilities. This copies the options. Further changes will not be
reflected in the returned capabilities.
(Overrides DriverOptionsToCapabilities.) |
![]() | ToString | (Inherited from Object.) |
Examples
SafariOptions options = new SafariOptions(); options.SkipExtensionInstallation = true;
For use with SafariDriver:
SafariDriver driver = new SafariDriver(options);
For use with RemoteWebDriver:
RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities());
See Also