Interface SupportsChromedriverPortOption<T extends BaseOptions<T>>
-
- All Superinterfaces:
CanSetCapability<T>,org.openqa.selenium.Capabilities,java.io.Serializable
- All Known Implementing Classes:
EspressoOptions,UiAutomator2Options
public interface SupportsChromedriverPortOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCHROMEDRIVER_PORT_OPTION
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.Optional<java.lang.Integer>getChromedriverPort()Get the local port number to use for Chromedriver communication.default TsetChromedriverPort(int port)The port number to use for Chromedriver communication.-
Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability
amend, setCapability
-
-
-
-
Field Detail
-
CHROMEDRIVER_PORT_OPTION
static final java.lang.String CHROMEDRIVER_PORT_OPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
setChromedriverPort
default T setChromedriverPort(int port)
The port number to use for Chromedriver communication. Any free port number is selected by default if unset.- Parameters:
port- port number in range 0..65535- Returns:
- self instance for chaining.
-
getChromedriverPort
default java.util.Optional<java.lang.Integer> getChromedriverPort()
Get the local port number to use for Chromedriver communication.- Returns:
- Port number.
-
-