Package org.openqa.selenium.safari
Class SafariOptions
java.lang.Object
org.openqa.selenium.MutableCapabilities
org.openqa.selenium.remote.AbstractDriverOptions<SafariOptions>
org.openqa.selenium.safari.SafariOptions
- All Implemented Interfaces:
Serializable
,Capabilities
Class to manage options specific to
SafariDriver
.
Example usage:
SafariOptions options = new SafariOptions()
options.setUseTechnologyPreview(true);
// For use with SafariDriver:
SafariDriver driver = new SafariDriver(options);
// For use with RemoteWebDriver:
RemoteWebDriver driver = new RemoteWebDriver(
new URL("http://localhost:4444/"),
options);
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic SafariOptions
fromCapabilities
(Capabilities capabilities) Construct aSafariOptions
instance from given capabilities.boolean
boolean
protected Object
getExtraCapability
(String capabilityName) boolean
merge
(Capabilities extraCapabilities) Merge twoCapabilities
together and return the union of the two as a newCapabilities
instance.setAutomaticInspection
(boolean automaticInspection) Instruct the SafariDriver to enable the Automatic Inspection if true, otherwise disable the automatic inspection.setAutomaticProfiling
(boolean automaticProfiling) Instruct the SafariDriver to enable the Automatic profiling if true, otherwise disable the automatic profiling.setUseTechnologyPreview
(boolean useTechnologyPreview) Instruct the SafariDriver to use the Safari Technology Preview if true, otherwise use the release version of Safari.Methods inherited from class org.openqa.selenium.remote.AbstractDriverOptions
asMap, getCapability, getCapabilityNames, setAcceptInsecureCerts, setBrowserVersion, setEnableDownloads, setImplicitWaitTimeout, setPageLoadStrategy, setPageLoadTimeout, setPlatformName, setProxy, setScriptTimeout, setStrictFileInteractability, setUnhandledPromptBehaviour
Methods inherited from class org.openqa.selenium.MutableCapabilities
equals, hashCode, setCapability, setCapability, setCapability, setCapability, toJson, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.openqa.selenium.Capabilities
getBrowserName, getBrowserVersion, getPlatformName, is
-
Constructor Details
-
SafariOptions
public SafariOptions() -
SafariOptions
-
-
Method Details
-
fromCapabilities
Construct aSafariOptions
instance from given capabilities.- Parameters:
capabilities
- Desired capabilities from which the options are derived.- Returns:
- SafariOptions
- Throws:
WebDriverException
- If an error occurred during the reconstruction of the options
-
merge
Description copied from class:MutableCapabilities
Merge twoCapabilities
together and return the union of the two as a newCapabilities
instance. Capabilities fromother
will override those inthis
.- Specified by:
merge
in interfaceCapabilities
- Overrides:
merge
in classMutableCapabilities
-
getAutomaticInspection
public boolean getAutomaticInspection() -
setAutomaticInspection
Instruct the SafariDriver to enable the Automatic Inspection if true, otherwise disable the automatic inspection. Defaults to disabling the automatic inspection.- Parameters:
automaticInspection
- If true, the SafariDriver will enable the Automation Inspection, otherwise will disable.
-
getAutomaticProfiling
public boolean getAutomaticProfiling() -
setAutomaticProfiling
Instruct the SafariDriver to enable the Automatic profiling if true, otherwise disable the automatic profiling. Defaults to disabling the automatic profiling.- Parameters:
automaticProfiling
- If true, the SafariDriver will enable the Automation Profiling, otherwise will disable.
-
getUseTechnologyPreview
public boolean getUseTechnologyPreview() -
setUseTechnologyPreview
Instruct the SafariDriver to use the Safari Technology Preview if true, otherwise use the release version of Safari. Defaults to using the release version of Safari.- Parameters:
useTechnologyPreview
- If true, the SafariDriver will use the Safari Technology Preview, otherwise will use the release version of Safari.
-
getExtraCapabilityNames
- Specified by:
getExtraCapabilityNames
in classAbstractDriverOptions<SafariOptions>
-
getExtraCapability
- Specified by:
getExtraCapability
in classAbstractDriverOptions<SafariOptions>
-