Package org.openqa.selenium.ie
Class InternetExplorerOptions
- java.lang.Object
-
- org.openqa.selenium.MutableCapabilities
-
- org.openqa.selenium.remote.AbstractDriverOptions<InternetExplorerOptions>
-
- org.openqa.selenium.ie.InternetExplorerOptions
-
- All Implemented Interfaces:
org.openqa.selenium.Capabilities
public class InternetExplorerOptions extends org.openqa.selenium.remote.AbstractDriverOptions<InternetExplorerOptions>
Options for configuring the use of IE. Can be used like so:InternetExplorerOptions options = new InternetExplorerOptions() .requireWindowFocus(); new InternetExplorerDriver(options);
-
-
Constructor Summary
Constructors Constructor Description InternetExplorerOptions()InternetExplorerOptions(org.openqa.selenium.Capabilities source)
-
Method Summary
-
Methods inherited from class org.openqa.selenium.remote.AbstractDriverOptions
setAcceptInsecureCerts, setPageLoadStrategy, setProxy, setStrictFileInteractability, setUnhandledPromptBehaviour
-
Methods inherited from class org.openqa.selenium.MutableCapabilities
amendHashCode, asMap, equals, getCapability, getCapabilityNames, hashCode, setCapability, setCapability, setCapability, toJson, toString
-
-
-
-
Method Detail
-
merge
public InternetExplorerOptions merge(org.openqa.selenium.Capabilities extraCapabilities)
- Specified by:
mergein interfaceorg.openqa.selenium.Capabilities- Overrides:
mergein classorg.openqa.selenium.MutableCapabilities
-
withAttachTimeout
public InternetExplorerOptions withAttachTimeout(long duration, java.util.concurrent.TimeUnit unit)
-
withAttachTimeout
public InternetExplorerOptions withAttachTimeout(java.time.Duration duration)
-
elementScrollTo
public InternetExplorerOptions elementScrollTo(ElementScrollBehavior behavior)
-
enablePersistentHovering
public InternetExplorerOptions enablePersistentHovering()
Enable persistently sendingWM_MOUSEMOVEmessages to the IE window during a mouse hover.
-
useCreateProcessApiToLaunchIe
public InternetExplorerOptions useCreateProcessApiToLaunchIe()
Force the use of the Windows CreateProcess API when launching Internet Explorer.
-
useShellWindowsApiToAttachToIe
public InternetExplorerOptions useShellWindowsApiToAttachToIe()
Use the Windows ShellWindows API when attaching to Internet Explorer.
-
destructivelyEnsureCleanSession
public InternetExplorerOptions destructivelyEnsureCleanSession()
Clear the Internet Explorer cache before launching the browser. When set clears the system cache for all instances of Internet Explorer, even those already running when the driven instance is launched.
-
addCommandSwitches
public InternetExplorerOptions addCommandSwitches(java.lang.String... switches)
-
usePerProcessProxy
public InternetExplorerOptions usePerProcessProxy()
Use theProxydefined in otherCapabilitieson a per-process basis, not updating the system installed proxy setting. This is only valid when setting aProxywhere theProxy.ProxyTypeis one ofProxy.ProxyType.DIRECTProxy.ProxyType.MANUALProxy.ProxyType.SYSTEM
-
withInitialBrowserUrl
public InternetExplorerOptions withInitialBrowserUrl(java.lang.String url)
-
requireWindowFocus
public InternetExplorerOptions requireWindowFocus()
-
waitForUploadDialogUpTo
public InternetExplorerOptions waitForUploadDialogUpTo(long duration, java.util.concurrent.TimeUnit unit)
-
waitForUploadDialogUpTo
public InternetExplorerOptions waitForUploadDialogUpTo(java.time.Duration duration)
-
introduceFlakinessByIgnoringSecurityDomains
public InternetExplorerOptions introduceFlakinessByIgnoringSecurityDomains()
-
disableNativeEvents
public InternetExplorerOptions disableNativeEvents()
-
ignoreZoomSettings
public InternetExplorerOptions ignoreZoomSettings()
-
takeFullPageScreenshot
public InternetExplorerOptions takeFullPageScreenshot()
-
setCapability
public void setCapability(java.lang.String key, java.lang.Object value)- Overrides:
setCapabilityin classorg.openqa.selenium.MutableCapabilities
-
-