From 5015bde93e942265af231d81e1acaf1fd1acc6ca Mon Sep 17 00:00:00 2001 From: Miguel Date: Wed, 18 Mar 2020 15:04:46 +0000 Subject: [PATCH] Fix Call to undefined method [appendWithPauses] Currently the method typeSlowly throws a BadMethodCallException: Call to undefined method [appendWithPauses]. The cause of this is that the typeSlowly method should be calling the appendSlowly instead of appendWithPauses. --- src/Concerns/InteractsWithElements.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Concerns/InteractsWithElements.php b/src/Concerns/InteractsWithElements.php index b21cb6dc3..96e6ec94a 100644 --- a/src/Concerns/InteractsWithElements.php +++ b/src/Concerns/InteractsWithElements.php @@ -154,7 +154,7 @@ public function type($field, $value) */ public function typeSlowly($field, $value, $pause = 100) { - $this->clear($field)->appendWithPauses($field, $value, $pause); + $this->clear($field)->appendSlowly($field, $value, $pause); return $this; }