diff --git a/src/Keyboard.php b/src/Keyboard.php index 9a2d8c3bb..5f5f31b84 100644 --- a/src/Keyboard.php +++ b/src/Keyboard.php @@ -69,6 +69,19 @@ public function type($keys) return $this; } + /** + * Pause for the given amount of milliseconds. + * + * @param int $milliseconds + * @return $this + */ + public function pause($milliseconds) + { + $this->browser->pause($milliseconds); + + return $this; + } + /** * Dynamically call a method on the keyboard. *