File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments