function ElementsTableSelectTest::testMultipleFalse

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Form/ElementsTableSelectTest.php \Drupal\Tests\system\Functional\Form\ElementsTableSelectTest::testMultipleFalse()
  2. 8.9.x core/modules/system/tests/src/Functional/Form/ElementsTableSelectTest.php \Drupal\Tests\system\Functional\Form\ElementsTableSelectTest::testMultipleFalse()
  3. 11.x core/modules/system/tests/src/Functional/Form/ElementsTableSelectTest.php \Drupal\Tests\system\Functional\Form\ElementsTableSelectTest::testMultipleFalse()

Tests the display of radios when #multiple is FALSE.

File

core/modules/system/tests/src/Functional/Form/ElementsTableSelectTest.php, line 49

Class

ElementsTableSelectTest
Tests the tableselect form element for expected behavior.

Namespace

Drupal\Tests\system\Functional\Form

Code

public function testMultipleFalse() : void {
  $this->drupalGet('form_test/tableselect/multiple-false');
  $this->assertSession()
    ->pageTextNotContains('Empty text.');
  // Test for the absence of the Select all rows tableheader.
  $this->assertSession()
    ->elementNotExists('xpath', '//th[@class="select-all"]');
  $rows = [
    'row1',
    'row2',
    'row3',
  ];
  foreach ($rows as $row) {
    $this->assertSession()
      ->elementExists('xpath', '//input[@type="radio"]');
  }
}

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