function FormTest::testRequiredAttribute

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Form/FormTest.php \Drupal\Tests\system\Functional\Form\FormTest::testRequiredAttribute()
  2. 8.9.x core/modules/system/tests/src/Functional/Form/FormTest.php \Drupal\Tests\system\Functional\Form\FormTest::testRequiredAttribute()
  3. 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 892

Class

FormTest
Tests various form element validation mechanisms.

Namespace

Drupal\Tests\system\Functional\Form

Code

public function testRequiredAttribute() : void {
  $this->drupalGet('form-test/required-attribute');
  foreach ([
    'textfield',
    'password',
    'textarea',
  ] as $type) {
    $field = $this->assertSession()
      ->fieldExists("edit-{$type}");
    $this->assertSame('required', $field->getAttribute('required'), "The {$type} has the proper required attribute.");
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.