function FilterFormTest::assertEnabledTextarea

Same name and namespace in other branches
  1. 9 core/modules/filter/tests/src/Functional/FilterFormTest.php \Drupal\Tests\filter\Functional\FilterFormTest::assertEnabledTextarea()
  2. 8.9.x core/modules/filter/tests/src/Functional/FilterFormTest.php \Drupal\Tests\filter\Functional\FilterFormTest::assertEnabledTextarea()
  3. 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 237

Class

FilterFormTest
Tests form elements with associated text formats.

Namespace

Drupal\Tests\filter\Functional

Code

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.