Interface SupportsShowIosLogOption<T extends BaseOptions<T>>

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

public interface SupportsShowIosLogOption<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 any logs captured from a device in the appium logs.
    default T
    setShowIosLog(boolean value)
    Whether to show any logs captured from a device in the appium logs.
    default T
    Enforces showing any logs captured from a device in the appium logs.

    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

    • showIosLog

      default T showIosLog()
      Enforces showing any logs captured from a device in the appium logs.
      Returns:
      self instance for chaining.
    • setShowIosLog

      default T setShowIosLog(boolean value)
      Whether to show any logs captured from a device in the appium logs. Default false.
      Parameters:
      value - Whether to show any logs captured from a device in the appium logs.
      Returns:
      self instance for chaining.
    • doesShowIosLog

      default Optional<Boolean> doesShowIosLog()
      Get whether to show any logs captured from a device in the appium logs.
      Returns:
      True or false.