Skip to content

Commit

Permalink
Merge pull request #748 from hivokas/patch-3
Browse files Browse the repository at this point in the history
[5.x] Adds typeWithPauses(), appendWithPauses() methods
  • Loading branch information
taylorotwell authored Mar 14, 2020
2 parents 8065186 + 4e1e387 commit afd6c71
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/Concerns/InteractsWithElements.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,21 @@ public function type($field, $value)
return $this;
}

/**
* Type the given value in the given field slowly.
*
* @param string $field
* @param string $value
* @param int $pause
* @return $this
*/
public function typeSlowly($field, $value, $pause = 100)
{
$this->clear($field)->appendWithPauses($field, $value, $pause);

return $this;
}

/**
* Type the given value in the given field without clearing it.
*
Expand All @@ -158,6 +173,23 @@ public function append($field, $value)
return $this;
}

/**
* Type the given value in the given field slowly without clearing it.
*
* @param string $field
* @param string $value
* @param int $pause
* @return $this
*/
public function appendSlowly($field, $value, $pause = 100)
{
foreach (str_split($value) as $char) {
$this->append($field, $char)->pause($pause);
}

return $this;
}

/**
* Clear the given field.
*
Expand Down

0 comments on commit afd6c71

Please sign in to comment.