function 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\FunctionalJavascript

Code

public function testToolbarOnFrontPage() {
    $this->loginForToolbar();
    $this->drupalGet('<front>');
    $this->waitForToolbar();
    $assert = $this->assertSession();
    $assert->pageTextContains(\Drupal::VERSION);
    $assert->pageTextContains('Configure Webprofiler');
    $assert->pageTextContains('View latest reports');
    $assert->pageTextContains('Drupal Documentation');
    $assert->pageTextContains('Get involved!');
}