Interface SupportsShowServerLogsOption<T extends BaseOptions<T>>

  • All Superinterfaces:
    CanSetCapability<T>, org.openqa.selenium.Capabilities, java.io.Serializable
    All Known Implementing Classes:
    Mac2Options

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

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Boolean> doesShowServerLogs()
      Get whether to show WDA server logs in the Appium log.
      default T setShowServerLogs​(boolean value)
      Set it to true in order to include xcodebuild output to the Appium server log.
      default T showServerLogs()
      Enforce showing of WDA server logs in the Appium log..
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • SHOW_SERVER_LOGS_OPTION

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

      • showServerLogs

        default T showServerLogs()
        Enforce showing of WDA server logs in the Appium log..
        Returns:
        self instance for chaining.
      • setShowServerLogs

        default T setShowServerLogs​(boolean value)
        Set it to true in order to include xcodebuild output to the Appium server log. false by default.
        Parameters:
        value - Whether to show WDA server logs in the Appium log.
        Returns:
        self instance for chaining.
      • doesShowServerLogs

        default java.util.Optional<java.lang.Boolean> doesShowServerLogs()
        Get whether to show WDA server logs in the Appium log.
        Returns:
        True or false.