Interface SupportsShowServerLogsOption<T extends BaseOptions<T>>

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

public interface SupportsShowServerLogsOption<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 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
    Enforce showing of WDA server logs in the Appium 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

    • 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 Optional<Boolean> doesShowServerLogs()
      Get whether to show WDA server logs in the Appium log.
      Returns:
      True or false.