public function VarbaseContext::beforeStepDismissAlert in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 9.0.x
Same name and namespace in other branches
- 8.8 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::beforeStepDismissAlert()
- 8.4 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::beforeStepDismissAlert()
- 8.5 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::beforeStepDismissAlert()
- 8.6 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::beforeStepDismissAlert()
- 8.7 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::beforeStepDismissAlert()
Dismiss Alerts Before going to the next step.
@BeforeStep @AcceptAlertsBeforStep
File
- tests/
features/ bootstrap/ VarbaseContext.php, line 1716
Class
- VarbaseContext
- Defines application features from the specific context.
Code
public function beforeStepDismissAlert(BeforeStepScope $scope) {
try {
$this
->getSession()
->getDriver()
->getWebDriverSession()
->dismiss_alert();
} catch (Exception $e) {
// no-op, alert might not be present.
}
}