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:
java.io.Serializable,org.openqa.selenium.Capabilities
public class SafariOptions extends org.openqa.selenium.remote.AbstractDriverOptions<SafariOptions>
Class to manage options specific toSafariDriver.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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SafariOptions()SafariOptions(org.openqa.selenium.Capabilities source)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SafariOptionsfromCapabilities(org.openqa.selenium.Capabilities capabilities)Construct aSafariOptionsinstance from given capabilities.booleangetAutomaticInspection()booleangetAutomaticProfiling()protected java.lang.ObjectgetExtraCapability(java.lang.String capabilityName)protected java.util.Set<java.lang.String>getExtraCapabilityNames()booleangetUseTechnologyPreview()SafariOptionsmerge(org.openqa.selenium.Capabilities extraCapabilities)SafariOptionssetAutomaticInspection(boolean automaticInspection)Instruct the SafariDriver to enable the Automatic Inspection if true, otherwise disable the automatic inspection.SafariOptionssetAutomaticProfiling(boolean automaticProfiling)Instruct the SafariDriver to enable the Automatic profiling if true, otherwise disable the automatic profiling.SafariOptionssetUseTechnologyPreview(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, setImplicitWaitTimeout, setPageLoadStrategy, setPageLoadTimeout, setPlatformName, setProxy, setScriptTimeout, setStrictFileInteractability, setUnhandledPromptBehaviour
-
Methods inherited from class org.openqa.selenium.MutableCapabilities
equals, hashCode, setCapability, setCapability, setCapability, setCapability, toJson, toString
-
-
-
-
Method Detail
-
fromCapabilities
public static SafariOptions fromCapabilities(org.openqa.selenium.Capabilities capabilities) throws org.openqa.selenium.WebDriverException
Construct aSafariOptionsinstance from given capabilities.- Parameters:
capabilities- Desired capabilities from which the options are derived.- Returns:
- SafariOptions
- Throws:
org.openqa.selenium.WebDriverException- If an error occurred during the reconstruction of the options
-
merge
public SafariOptions merge(org.openqa.selenium.Capabilities extraCapabilities)
- Specified by:
mergein interfaceorg.openqa.selenium.Capabilities- Overrides:
mergein classorg.openqa.selenium.MutableCapabilities
-
getAutomaticInspection
public boolean getAutomaticInspection()
-
setAutomaticInspection
public SafariOptions setAutomaticInspection(boolean automaticInspection)
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
public SafariOptions setAutomaticProfiling(boolean automaticProfiling)
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
public SafariOptions setUseTechnologyPreview(boolean useTechnologyPreview)
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
protected java.util.Set<java.lang.String> getExtraCapabilityNames()
- Specified by:
getExtraCapabilityNamesin classorg.openqa.selenium.remote.AbstractDriverOptions<SafariOptions>
-
getExtraCapability
protected java.lang.Object getExtraCapability(java.lang.String capabilityName)
- Specified by:
getExtraCapabilityin classorg.openqa.selenium.remote.AbstractDriverOptions<SafariOptions>
-
-