Interface SupportsShouldTerminateAppOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Boolean> doesTerminateApp()
      Get whether to enforce app termination on session quit.
      default T setShouldTerminateApp​(boolean value)
      Specify if the app should be terminated on session end.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • SHOULD_TERMINATE_APP_OPTION

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

      • setShouldTerminateApp

        default T setShouldTerminateApp​(boolean value)
        Specify if the app should be terminated on session end. This capability only has an effect if an application identifier has been passed to the test session (either explicitly, by setting bundleId, or implicitly, by providing app). Default is true unless noReset capability is set to true.
        Parameters:
        value - Whether to enforce app termination on session quit.
        Returns:
        self instance for chaining.
      • doesTerminateApp

        default java.util.Optional<java.lang.Boolean> doesTerminateApp()
        Get whether to enforce app termination on session quit.
        Returns:
        True or false.