function FilterFormTest::assertEnabledTextarea
Same name in other branches
- 8.9.x core/modules/filter/tests/src/Functional/FilterFormTest.php \Drupal\Tests\filter\Functional\FilterFormTest::assertEnabledTextarea()
- 10 core/modules/filter/tests/src/Functional/FilterFormTest.php \Drupal\Tests\filter\Functional\FilterFormTest::assertEnabledTextarea()
- 11.x core/modules/filter/tests/src/Functional/FilterFormTest.php \Drupal\Tests\filter\Functional\FilterFormTest::assertEnabledTextarea()
Asserts that a textarea with a given ID exists and is not disabled.
@internal
Parameters
string $id: The HTML ID of the textarea.
2 calls to FilterFormTest::assertEnabledTextarea()
- FilterFormTest::doFilterFormTestAsAdmin in core/
modules/ filter/ tests/ src/ Functional/ FilterFormTest.php - Tests the behavior of the 'text_format' element as an administrator.
- FilterFormTest::doFilterFormTestAsNonAdmin in core/
modules/ filter/ tests/ src/ Functional/ FilterFormTest.php - Tests the behavior of the 'text_format' element as a normal user.
File
-
core/
modules/ filter/ tests/ src/ Functional/ FilterFormTest.php, line 235
Class
- FilterFormTest
- Tests form elements with associated text formats.
Namespace
Drupal\Tests\filter\FunctionalCode
protected function assertEnabledTextarea(string $id) : void {
$textarea = $this->assertSession()
->fieldEnabled($id);
$this->assertSame('textarea', $textarea->getTagName());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.