function SearchConfigSettingsFormTest::testDefaultSearchPageOrdering
Tests the ordering of search pages on a clean install.
File
- 
              core/
modules/ search/ tests/ src/ Functional/ SearchConfigSettingsFormTest.php, line 253  
Class
- SearchConfigSettingsFormTest
 - Verify the search config settings form.
 
Namespace
Drupal\Tests\search\FunctionalCode
public function testDefaultSearchPageOrdering() {
  $this->drupalGet('search');
  $elements = $this->xpath('//div[@id="block-local-tasks"]//a');
  $this->assertSame(Url::fromRoute('search.view_node_search')->toString(), $elements[0]->getAttribute('href'));
  $this->assertSame(Url::fromRoute('search.view_dummy_search_type')->toString(), $elements[1]->getAttribute('href'));
  $this->assertSame(Url::fromRoute('search.view_user_search')->toString(), $elements[2]->getAttribute('href'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.