public function ElementContext::assertOptions in Lightning Core 8.4
Same name and namespace in other branches
- 8.5 tests/contexts/ElementContext.behat.inc \Acquia\LightningExtension\Context\ElementContext::assertOptions()
- 8 tests/contexts/ElementContext.behat.inc \Acquia\LightningExtension\Context\ElementContext::assertOptions()
- 8.2 tests/contexts/ElementContext.behat.inc \Acquia\LightningExtension\Context\ElementContext::assertOptions()
- 8.3 tests/contexts/ElementContext.behat.inc \Acquia\LightningExtension\Context\ElementContext::assertOptions()
Asserts that a select list has a set of options.
@Then the :select field should have options:
Parameters
string $select: The select list to check.
\Behat\Gherkin\Node\PyStringNode $options: The options to look for.
File
- tests/
contexts/ ElementContext.behat.inc, line 147
Class
- ElementContext
- Contains miscellaneous step definitions for working with HTML elements.
Namespace
Acquia\LightningExtension\ContextCode
public function assertOptions($select, PyStringNode $options) {
foreach ($options
->getStrings() as $option) {
$this
->assertOption($select, $option);
}
}