function AssertLegacyTraitDeprecatedTest::testGetAllOptions

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/FunctionalTests/Core/Test/AssertLegacyTraitDeprecatedTest.php \Drupal\FunctionalTests\Core\Test\AssertLegacyTraitDeprecatedTest::testGetAllOptions()

Tests getAllOptions().

File

core/tests/Drupal/FunctionalTests/Core/Test/AssertLegacyTraitDeprecatedTest.php, line 30

Class

AssertLegacyTraitDeprecatedTest
Tests deprecated AssertLegacyTrait functionality.

Namespace

Drupal\FunctionalTests\Core\Test

Code

public function testGetAllOptions() {
    $this->expectDeprecation('AssertLegacyTrait::getAllOptions() is deprecated in drupal:8.5.0 and is removed from drupal:10.0.0. Use $element->findAll(\'xpath\', \'option\') instead. See https://www.drupal.org/node/3129738');
    $this->drupalGet('/form-test/select');
    $this->assertCount(6, $this->getAllOptions($this->cssSelect('select[name="opt_groups"]')[0]));
}

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