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