Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.x] Adds typeWithPauses(), appendWithPauses() methods #748

Merged
merged 3 commits into from
Mar 14, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Concerns/InteractsWithElements.php
Original file line number Diff line number Diff line change
@@ -145,14 +145,14 @@ public function type($field, $value)
}

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

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

/**
* Type the given value in the given field with pauses without clearing it.
* 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 appendWithPauses($field, $value, $pause = 100)
public function appendSlowly($field, $value, $pause = 100)
{
foreach (str_split($value) as $char) {
$this->append($field, $char)->pause($pause);