Deprecated API
Contents
-
ElementDescription
-
InterfaceDescriptionThis functionality is no longer supported
-
ClassDescriptionUse
FirefoxOptions.setBinary(Path)
orFirefoxOptions.setBinary(String)
instead.LocalStorage can be managed by executing JavaScript. @see #executeScript(String, Object...)This functionality is no longer supportedLocalStorage can be managed by executing JavaScript. @see #executeScript(String, Object...)This class has moved to anew location
.This functionality is no longer supported
-
MethodDescriptionUse W3C-compliant BiDi protocol. Use {
FirefoxDriver.getBiDi()
}Use W3C-compliant BiDi protocol. Use {FirefoxDriver.maybeGetBiDi()
}Non W3C compliantUseWebDriver.Timeouts.implicitlyWait(Duration)
Specifies the amount of time the driver should wait when searching for an element if it is not immediately present.
When searching for a single element, the driver should poll the page until the element has been found, or this timeout expires before throwing a
NoSuchElementException
. When searching for multiple elements, the driver should poll the page until at least one element has been found or this timeout has expired.Increasing the implicit wait timeout should be used judiciously as it will have an adverse effect on test run time, especially when used with slower location strategies like XPath.
If the timeout is negative, not null, or greater than 2e16 - 1, an error code with invalid argument will be returned.
UseWebDriver.Timeouts.pageLoadTimeout(Duration)
Sets the amount of time to wait for a page load to complete before throwing an error. If the timeout is negative, not null, or greater than 2e16 - 1, an error code with invalid argument will be returned.
UseWebDriver.Timeouts.scriptTimeout(Duration)
Sets the amount of time to wait for an asynchronous script to finish execution before throwing an error. If the timeout is negative, not null, or greater than 2e16 - 1, an error code with invalid argument will be returned.