public function ElementTest::testWrapperIds in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/tests/src/Functional/Form/ElementTest.php \Drupal\Tests\system\Functional\Form\ElementTest::testWrapperIds()
Tests wrapper ids for checkboxes and radios.
File
- core/
modules/ system/ tests/ src/ Functional/ Form/ ElementTest.php, line 111
Class
- ElementTest
- Tests building and processing of core form elements.
Namespace
Drupal\Tests\system\Functional\FormCode
public function testWrapperIds() {
$this
->drupalGet('form-test/checkboxes-radios');
// Verify that wrapper id is different from element id.
foreach ([
'checkboxes',
'radios',
] as $type) {
// A single element id is found.
$this
->assertSession()
->elementsCount('xpath', "//div[@id='edit-{$type}']", 1);
$wrapper_ids = $this
->xpath('//fieldset[@id=:id]', [
':id' => 'edit-' . $type . '--wrapper',
]);
$this
->assertCount(1, $wrapper_ids, new FormattableMarkup('A single wrapper id found for type %type', [
'%type' => $type,
]));
}
}