public function ToolbarTest::testToolbarOnFrontPage in Devel 4.x
Same name and namespace in other branches
- 8.3 webprofiler/tests/src/FunctionalJavascript/ToolbarTest.php \Drupal\Tests\webprofiler\FunctionalJavascript\ToolbarTest::testToolbarOnFrontPage()
- 8 webprofiler/tests/src/FunctionalJavascript/ToolbarTest.php \Drupal\Tests\webprofiler\FunctionalJavascript\ToolbarTest::testToolbarOnFrontPage()
- 8.2 webprofiler/tests/src/FunctionalJavascript/ToolbarTest.php \Drupal\Tests\webprofiler\FunctionalJavascript\ToolbarTest::testToolbarOnFrontPage()
Tests if the toolbar appears on front page.
File
- webprofiler/
tests/ src/ FunctionalJavascript/ ToolbarTest.php, line 29
Class
- ToolbarTest
- Tests the JavaScript functionality of webprofiler.
Namespace
Drupal\Tests\webprofiler\FunctionalJavascriptCode
public function testToolbarOnFrontPage() {
$this
->loginForToolbar();
$this
->drupalGet('<front>');
$this
->waitForToolbar();
$assert = $this
->assertSession();
$assert
->responseContains('Configure Webprofiler');
$assert
->responseContains('View latest reports');
$assert
->responseContains('Drupal Documentation');
$assert
->responseContains('Get involved!');
}