Interface SupportsShowXcodeLogOption<T extends BaseOptions<T>>

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

public interface SupportsShowXcodeLogOption<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 display the output of the Xcode command used to run the tests.
    default T
    setShowXcodeLog(boolean value)
    Whether to display the output of the Xcode command used to run the tests in Appium logs.
    default T
    Enforce to display the output of the Xcode command used to run the tests in 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

    • showXcodeLog

      default T showXcodeLog()
      Enforce to display the output of the Xcode command used to run the tests in Appium logs.
      Returns:
      self instance for chaining.
    • setShowXcodeLog

      default T setShowXcodeLog(boolean value)
      Whether to display the output of the Xcode command used to run the tests in Appium logs. If this is true, there will be lots of extra logging at startup. Defaults to false.
      Parameters:
      value - Whether to display the output of the Xcode command used to run the tests.
      Returns:
      self instance for chaining.
    • doesShowXcodeLog

      default Optional<Boolean> doesShowXcodeLog()
      Get whether to display the output of the Xcode command used to run the tests.
      Returns:
      True or false.