Skip to content

Commit 4e1e387

Browse files
authored
Update InteractsWithElements.php
1 parent 3a0e3b5 commit 4e1e387

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Concerns/InteractsWithElements.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,14 +145,14 @@ public function type($field, $value)
145145
}
146146

147147
/**
148-
* Type the given value in the given field with pauses.
148+
* Type the given value in the given field slowly.
149149
*
150150
* @param string $field
151151
* @param string $value
152152
* @param int $pause
153153
* @return $this
154154
*/
155-
public function typeWithPauses($field, $value, $pause = 100)
155+
public function typeSlowly($field, $value, $pause = 100)
156156
{
157157
$this->clear($field)->appendWithPauses($field, $value, $pause);
158158

@@ -174,14 +174,14 @@ public function append($field, $value)
174174
}
175175

176176
/**
177-
* Type the given value in the given field with pauses without clearing it.
177+
* Type the given value in the given field slowly without clearing it.
178178
*
179179
* @param string $field
180180
* @param string $value
181181
* @param int $pause
182182
* @return $this
183183
*/
184-
public function appendWithPauses($field, $value, $pause = 100)
184+
public function appendSlowly($field, $value, $pause = 100)
185185
{
186186
foreach (str_split($value) as $char) {
187187
$this->append($field, $char)->pause($pause);

0 commit comments

Comments
 (0)