Interface SupportsShowGradleLogOption<T extends BaseOptions<T>>
-
- All Superinterfaces:
CanSetCapability<T>,org.openqa.selenium.Capabilities,java.io.Serializable
- All Known Implementing Classes:
EspressoOptions
public interface SupportsShowGradleLogOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSHOW_GRADLE_LOG_OPTION
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.Optional<java.lang.Boolean>doesShowGradleLog()Get whether to include Gradle log to the regular server log.default TsetShowGradleLog(boolean value)Whether to include Gradle log to the regular server logs while building Espresso server.default TshowGradleLog()Enforces inclusion of the Gradle log to the regular server logs.-
Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability
amend, setCapability
-
-
-
-
Field Detail
-
SHOW_GRADLE_LOG_OPTION
static final java.lang.String SHOW_GRADLE_LOG_OPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
showGradleLog
default T showGradleLog()
Enforces inclusion of the Gradle log to the regular server logs.- Returns:
- self instance for chaining.
-
setShowGradleLog
default T setShowGradleLog(boolean value)
Whether to include Gradle log to the regular server logs while building Espresso server. false by default.- Parameters:
value- Whether to include Gradle log to the regular server logs.- Returns:
- self instance for chaining.
-
doesShowGradleLog
default java.util.Optional<java.lang.Boolean> doesShowGradleLog()
Get whether to include Gradle log to the regular server log.- Returns:
- True or false.
-
-