Interface SupportsSkipAppKillOption<T extends BaseOptions<T>>

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

public interface SupportsSkipAppKillOption<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 skip the termination of the application under test.
    default T
    setSkipAppKill(boolean value)
    Set whether to skip the termination of the application under test when the testing session quits.
    default T
    Enforces skipping the termination of the application under test when the testing session quits.

    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

    • skipAppKill

      default T skipAppKill()
      Enforces skipping the termination of the application under test when the testing session quits.
      Returns:
      self instance for chaining.
    • setSkipAppKill

      default T setSkipAppKill(boolean value)
      Set whether to skip the termination of the application under test when the testing session quits. false by default. This capability is only going to be applied if bundleId is set.
      Parameters:
      value - True to skip the termination of the application under test.
      Returns:
      self instance for chaining.
    • doesSkipAppKill

      default Optional<Boolean> doesSkipAppKill()
      Get whether to skip the termination of the application under test.
      Returns:
      True or false.