MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / pause

Method pause

java/src/org/openqa/selenium/interactions/Actions.java:449–451  ·  view source on GitHub ↗

Performs a pause. @param pause pause duration, in milliseconds. @return A self reference.

(long pause)

Source from the content-addressed store, hash-verified

447 * @return A self reference.
448 */
449 public Actions pause(long pause) {
450 return tick(new Pause(getActivePointer(), Duration.ofMillis(pause)));
451 }
452
453 public Actions pause(Duration duration) {
454 Require.nonNegative("Duration of pause", duration);

Calls 3

tickMethod · 0.95
getActivePointerMethod · 0.95
nonNegativeMethod · 0.95