Interface SupportsChromedriverExecutableOption<T extends BaseOptions<T>>
-
- All Superinterfaces:
CanSetCapability<T>
,org.openqa.selenium.Capabilities
,java.io.Serializable
- All Known Implementing Classes:
EspressoOptions
,UiAutomator2Options
public interface SupportsChromedriverExecutableOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CHROMEDRIVER_EXECUTABLE_OPTION
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.Optional<java.lang.String>
getChromedriverExecutable()
Get the path to the chromedriver executable on the server file system..default T
setChromedriverExecutable(java.lang.String path)
Full path to the chromedriver executable on the server file system.-
Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability
amend, setCapability
-
-
-
-
Field Detail
-
CHROMEDRIVER_EXECUTABLE_OPTION
static final java.lang.String CHROMEDRIVER_EXECUTABLE_OPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
setChromedriverExecutable
default T setChromedriverExecutable(java.lang.String path)
Full path to the chromedriver executable on the server file system.- Parameters:
path
- Path to chromedriver executable.- Returns:
- self instance for chaining.
-
getChromedriverExecutable
default java.util.Optional<java.lang.String> getChromedriverExecutable()
Get the path to the chromedriver executable on the server file system..- Returns:
- Path to chromedriver executable.
-
-