Interface SupportsShowChromedriverLogOption<T extends BaseOptions<T>>

All Superinterfaces:
CanSetCapability<T>, org.openqa.selenium.Capabilities, Serializable
All Known Implementing Classes:
EspressoOptions, UiAutomator2Options

public interface SupportsShowChromedriverLogOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    default Optional<Boolean>
    Get whether to forward chromedriver output to the Appium server log.
    default T
    setShowChromedriverLog(boolean value)
    If set to true then all the output from chromedriver binary will be forwarded to the Appium server log.
    default T
    Enforces all the output from chromedriver binary to be forwarded to the Appium server log.

    Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability

    amend, setCapability

    Methods inherited from interface org.openqa.selenium.Capabilities

    asMap, get, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatformName, is, merge, required
  • Field Details

  • Method Details

    • showChromedriverLog

      default T showChromedriverLog()
      Enforces all the output from chromedriver binary to be forwarded to the Appium server log.
      Returns:
      self instance for chaining.
    • setShowChromedriverLog

      default T setShowChromedriverLog(boolean value)
      If set to true then all the output from chromedriver binary will be forwarded to the Appium server log. false by default.
      Parameters:
      value - Whether to forward chromedriver output to the Appium server log.
      Returns:
      self instance for chaining.
    • doesShowChromedriverLog

      default Optional<Boolean> doesShowChromedriverLog()
      Get whether to forward chromedriver output to the Appium server log.
      Returns:
      True or false.