Interface SupportsDisableSuppressAccessibilityServiceOption<T extends BaseOptions<T>>

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

public interface SupportsDisableSuppressAccessibilityServiceOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
  • Field Details

    • DISABLE_SUPPRESS_ACCESSIBILITY_SERVICE_OPTION

      static final String DISABLE_SUPPRESS_ACCESSIBILITY_SERVICE_OPTION
      See Also:
  • Method Details

    • disableSuppressAccessibilityService

      default T disableSuppressAccessibilityService()
      Tells the instrumentation process to not suppress accessibility services during the automated test.
      Returns:
      self instance for chaining.
    • setDisableSuppressAccessibilityService

      default T setDisableSuppressAccessibilityService(boolean value)
      Being set to true tells the instrumentation process to not suppress accessibility services during the automated test. This might be useful if your automated test needs these services. false by default.
      Parameters:
      value - Set it to true in order to suppress accessibility services.
      Returns:
      self instance for chaining.
    • doesDisableSuppressAccessibilityService

      default Optional<Boolean> doesDisableSuppressAccessibilityService()
      Get whether to suppress accessibility services.
      Returns:
      True or false.