Interface SupportsMaxTypingFrequencyOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Integer> getMaxTypingFrequency()
      Get the number of keystrokes per minute.
      default T setMaxTypingFrequency​(int frequency)
      Maximum frequency of keystrokes for typing and clear.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • MAX_TYPING_FREQUENCY_OPTION

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

      • setMaxTypingFrequency

        default T setMaxTypingFrequency​(int frequency)
        Maximum frequency of keystrokes for typing and clear. If your tests are failing because of typing errors, you may want to adjust this. Defaults to 60 keystrokes per minute.
        Parameters:
        frequency - The number of keystrokes per minute.
        Returns:
        self instance for chaining.
      • getMaxTypingFrequency

        default java.util.Optional<java.lang.Integer> getMaxTypingFrequency()
        Get the number of keystrokes per minute.
        Returns:
        The number of keystrokes per minute.