Interface SupportsShowXcodeLogOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Boolean> doesShowXcodeLog()
      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 showXcodeLog()
      Enforce to display the output of the Xcode command used to run the tests in Appium logs.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • SHOW_XCODE_LOG_OPTION

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

      • 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 java.util.Optional<java.lang.Boolean> doesShowXcodeLog()
        Get whether to display the output of the Xcode command used to run the tests.
        Returns:
        True or false.