Interface SupportsSafariLogAllCommunicationOption<T extends BaseOptions<T>>

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

public interface SupportsSafariLogAllCommunicationOption<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 log of plists sent to and received from the Web Inspector.
    default T
    Enforces logging of plists sent to and received from the Web Inspector.
    default T
    Log all plists sent to and received from the Web Inspector, as plain text.

    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

    • safariLogAllCommunication

      default T safariLogAllCommunication()
      Enforces logging of plists sent to and received from the Web Inspector.
      Returns:
      self instance for chaining.
    • setSafariLogAllCommunication

      default T setSafariLogAllCommunication(boolean value)
      Log all plists sent to and received from the Web Inspector, as plain text. For some operations this can be a lot of data, so it is recommended to be used only when necessary. Defaults to false.
      Parameters:
      value - Whether to log all internal web debugger communication.
      Returns:
      self instance for chaining.
    • doesSafariLogAllCommunication

      default Optional<Boolean> doesSafariLogAllCommunication()
      Get whether to log of plists sent to and received from the Web Inspector.
      Returns:
      True or false.