function ElementsContainerTest::testOptionalContainerElements
Same name in other branches
- 8.9.x core/modules/system/tests/src/Functional/Form/ElementsContainerTest.php \Drupal\Tests\system\Functional\Form\ElementsContainerTest::testOptionalContainerElements()
- 10 core/modules/system/tests/src/Functional/Form/ElementsContainerTest.php \Drupal\Tests\system\Functional\Form\ElementsContainerTest::testOptionalContainerElements()
- 11.x core/modules/system/tests/src/Functional/Form/ElementsContainerTest.php \Drupal\Tests\system\Functional\Form\ElementsContainerTest::testOptionalContainerElements()
Tests the #optional container property.
File
-
core/
modules/ system/ tests/ src/ Functional/ Form/ ElementsContainerTest.php, line 29
Class
- ElementsContainerTest
- Tests the container form element for expected behavior.
Namespace
Drupal\Tests\system\Functional\FormCode
public function testOptionalContainerElements() {
$this->drupalGet('form-test/optional-container');
$assertSession = $this->assertSession();
$assertSession->elementNotExists('css', 'div.empty_optional');
$assertSession->elementExists('css', 'div.empty_nonoptional');
$assertSession->elementExists('css', 'div.nonempty_optional');
$assertSession->elementExists('css', 'div.nonempty_nonoptional');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.