public function ElementContext::assertVerticalTabMultiple in Lightning Core 8.5
Same name and namespace in other branches
- 8 tests/contexts/ElementContext.behat.inc \Acquia\LightningExtension\Context\ElementContext::assertVerticalTabMultiple()
- 8.2 tests/contexts/ElementContext.behat.inc \Acquia\LightningExtension\Context\ElementContext::assertVerticalTabMultiple()
- 8.3 tests/contexts/ElementContext.behat.inc \Acquia\LightningExtension\Context\ElementContext::assertVerticalTabMultiple()
- 8.4 tests/contexts/ElementContext.behat.inc \Acquia\LightningExtension\Context\ElementContext::assertVerticalTabMultiple()
Asserts that a specific set of vertical tabs exists.
@Then I should see (the )vertical tabs:
Parameters
\Behat\Gherkin\Node\PyStringNode $tabs: The text of the tabs, one per line.
\Behat\Mink\Element\ElementInterface $container: (optional) The element containing the vertical tab set.
File
- tests/
contexts/ ElementContext.behat.inc, line 264
Class
- ElementContext
- Contains miscellaneous step definitions for working with HTML elements.
Namespace
Acquia\LightningExtension\ContextCode
public function assertVerticalTabMultiple(PyStringNode $tabs, ElementInterface $container = NULL) {
foreach ($tabs
->getStrings() as $tab) {
$this
->assertVerticalTab($tab, $container);
}
}