public function VarbaseContext::iShouldSeeImageWithTheTitleText 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::iShouldSeeImageWithTheTitleText()
- 8.4 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::iShouldSeeImageWithTheTitleText()
- 8.5 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::iShouldSeeImageWithTheTitleText()
- 8.6 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::iShouldSeeImageWithTheTitleText()
- 8.7 tests/features/bootstrap/VarbaseContext.php \VarbaseContext::iShouldSeeImageWithTheTitleText()
Find an image with the title text attribute.
Varbase Context #varbase.
Example 1: Then I should see image with the "Flag Earth" title text.
@Then /^I should see image with the "([^"]*)" title text$/
File
- tests/
features/ bootstrap/ VarbaseContext.php, line 680
Class
- VarbaseContext
- Defines application features from the specific context.
Code
public function iShouldSeeImageWithTheTitleText($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.');
}
}