function FormTest::testRequiredAttribute
Same name in other branches
- 9 core/modules/system/tests/src/Functional/Form/FormTest.php \Drupal\Tests\system\Functional\Form\FormTest::testRequiredAttribute()
- 10 core/modules/system/tests/src/Functional/Form/FormTest.php \Drupal\Tests\system\Functional\Form\FormTest::testRequiredAttribute()
- 11.x core/modules/system/tests/src/Functional/Form/FormTest.php \Drupal\Tests\system\Functional\Form\FormTest::testRequiredAttribute()
Tests required attribute.
File
-
core/
modules/ system/ tests/ src/ Functional/ Form/ FormTest.php, line 888
Class
- FormTest
- Tests various form element validation mechanisms.
Namespace
Drupal\Tests\system\Functional\FormCode
public function testRequiredAttribute() {
$this->drupalGet('form-test/required-attribute');
$expected = 'required';
// Test to make sure the elements have the proper required attribute.
foreach ([
'textfield',
'password',
] as $type) {
$element = $this->xpath('//input[@id=:id and @required=:expected]', [
':id' => 'edit-' . $type,
':expected' => $expected,
]);
$this->assertTrue(!empty($element), new FormattableMarkup('The @type has the proper required attribute.', [
'@type' => $type,
]));
}
// Test to make sure textarea has the proper required attribute.
$element = $this->xpath('//textarea[@id=:id and @required=:expected]', [
':id' => 'edit-textarea',
':expected' => $expected,
]);
$this->assertTrue(!empty($element), 'The textarea has the proper required attribute.');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.