You are here

public function ElementTest::testDetailsSummaryAttributes in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/Form/ElementTest.php \Drupal\Tests\system\Functional\Form\ElementTest::testDetailsSummaryAttributes()
  2. 9 core/modules/system/tests/src/Functional/Form/ElementTest.php \Drupal\Tests\system\Functional\Form\ElementTest::testDetailsSummaryAttributes()

Tests summary attributes of details.

File

core/modules/system/tests/src/Functional/Form/ElementTest.php, line 201

Class

ElementTest
Tests building and processing of core form elements.

Namespace

Drupal\Tests\system\Functional\Form

Code

public function testDetailsSummaryAttributes() {
  $this
    ->drupalGet('form-test/group-details');
  $this
    ->assertSession()
    ->elementExists('css', 'summary[data-summary-attribute="test"]');
}