Interface SupportsDisableWindowAnimationOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default T disableWindowAnimation()
      Disables window animations when starting the instrumentation process.
      default java.util.Optional<java.lang.Boolean> doesDisableWindowAnimation()
      Get whether window animations when starting the instrumentation process are disabled.
      default T setDisableWindowAnimation​(boolean value)
      Set whether to disable window animations when starting the instrumentation process.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • DISABLE_WINDOWS_ANIMATION_OPTION

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

      • disableWindowAnimation

        default T disableWindowAnimation()
        Disables window animations when starting the instrumentation process.
        Returns:
        self instance for chaining.
      • setDisableWindowAnimation

        default T setDisableWindowAnimation​(boolean value)
        Set whether to disable window animations when starting the instrumentation process. false by default
        Parameters:
        value - True to disable window animations.
        Returns:
        self instance for chaining.
      • doesDisableWindowAnimation

        default java.util.Optional<java.lang.Boolean> doesDisableWindowAnimation()
        Get whether window animations when starting the instrumentation process are disabled.
        Returns:
        True or false.