Interface SupportsShowChromedriverLogOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Boolean> doesDhowChromedriverLog()
      Get whether to forward chromedriver output to the Appium server log.
      default T setDhowChromedriverLog​(boolean value)
      If set to true then all the output from chromedriver binary will be forwarded to the Appium server log.
      default T showChromedriverLog()
      Enforces all the output from chromedriver binary to be forwarded to the Appium server log.
      • Methods inherited from interface org.openqa.selenium.Capabilities

        asMap, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatform, getPlatformName, getVersion, is, merge
    • Field Detail

      • SHOW_CHROMEDRIVER_LOG_OPTION

        static final java.lang.String SHOW_CHROMEDRIVER_LOG_OPTION
        See Also:
        Constant Field Values
    • Method Detail

      • showChromedriverLog

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

        default T setDhowChromedriverLog​(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.
      • doesDhowChromedriverLog

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