public function VarbaseContext::iClickOnTheImageWithTheTitleText 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::iClickOnTheImageWithTheTitleText()
- 8.4 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::iClickOnTheImageWithTheTitleText()
- 8.5 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::iClickOnTheImageWithTheTitleText()
- 8.6 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::iClickOnTheImageWithTheTitleText()
- 8.7 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::iClickOnTheImageWithTheTitleText()
Click on an image with the provided title.
Varbase Context #varbase.
Example 1: I click on the image with the "Flag Earth image title" title text.
@Given /^I click on the image with the "([^"]*)" title text$/
File
- tests/
features/ bootstrap/ VarbaseContext.php, line 737
Class
- VarbaseContext
- Defines application features from the specific context.
Code
public function iClickOnTheImageWithTheTitleText($titleText) {
// Find an image with the title.
$element = $this
->getSession()
->getPage()
->find('xpath', "//img[contains(@title, '{$titleText}')]");
if (empty($element)) {
throw new \Exception('The page dose not have an image with the [ ' . $titleText . ' ] title text.');
}
// Click on the image.
$element
->click();
}