function SelectorsContext::moveFocusToField in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 8.7
Same name and namespace in other branches
- 8.8 tests/features/bootstrap/SelectorsContext.php \SelectorsContext::moveFocusToField()
- 8.4 tests/features/bootstrap/SelectorsContext.php \SelectorsContext::moveFocusToField()
- 8.5 tests/features/bootstrap/SelectorsContext.php \SelectorsContext::moveFocusToField()
- 8.6 tests/features/bootstrap/SelectorsContext.php \SelectorsContext::moveFocusToField()
- 9.0.x tests/features/bootstrap/SelectorsContext.php \SelectorsContext::moveFocusToField()
#vardot : Move the focus to selected field input element.
Example #1: When I move focus to "Title" field Example #2: And I move focus to "Body" field.
@When /^(?:|I )move focus to "(?P<selectedField>[^"]*)" field$/
File
- tests/
features/ bootstrap/ SelectorsContext.php, line 300
Class
- SelectorsContext
- Defines application features from the specific context.
Code
function moveFocusToField($selectedField) {
$field = $this
->getSession()
->getPage()
->findField($selectedField);
$fieldid = $field
->getAttribute('id');
$this
->getSession()
->getDriver()
->evaluateScript("jQuery('#{$fieldid}').focus();");
}