function TourJavascriptTest::testGeneralTourUse

Same name and namespace in other branches
  1. 9 core/modules/tour/tests/src/FunctionalJavascript/TourJavascriptTest.php \Drupal\Tests\tour\FunctionalJavascript\TourJavascriptTest::testGeneralTourUse()
  2. 11.x core/modules/tour/tests/src/FunctionalJavascript/TourJavascriptTest.php \Drupal\Tests\tour\FunctionalJavascript\TourJavascriptTest::testGeneralTourUse()

Tests stepping through a tour.

File

core/modules/tour/tests/src/FunctionalJavascript/TourJavascriptTest.php, line 76

Class

TourJavascriptTest
General Tour tests that require JavaScript.

Namespace

Drupal\Tests\tour\FunctionalJavascript

Code

public function testGeneralTourUse() : void {
  $page = $this->getSession()
    ->getPage();
  $assert_session = $this->assertSession();
  $this->drupalGet('tour-test-1');
  $assert_session->assertNoElementAfterWait('css', '.tip-tour-test-1');
  // Open the tour.
  $page->find('css', '#toolbar-tab-tour button')
    ->press();
  // Confirm the tour can be cancelled.
  $tip_to_close = $assert_session->waitForElementVisible('css', '.shepherd-enabled.tip-tour-test-1');
  $this->assertNotNull($tip_to_close);
  $tip_text = $tip_to_close->getText();
  $this->assertStringContainsString('always the best dressed', $tip_text);
  $this->assertStringContainsString('1 of 3', $tip_text);
  $this->assertStringNotContainsString('End tour', $tip_text);
  // Cancel the tour.
  $tip_to_close->find('css', '.shepherd-cancel-icon')
    ->press();
  $assert_session->assertNoElementAfterWait('css', '.tip-tour-test-1');
  $assert_session->assertNoElementAfterWait('css', '.shepherd-enabled');
  // Navigate through the three steps of the tour.
  $page->find('css', '#toolbar-tab-tour button')
    ->press();
  $tip1 = $assert_session->waitForElementVisible('css', '.shepherd-enabled.tip-tour-test-1');
  $this->assertNotNull($tip1);
  // Click the next button.
  $tip1->find('css', '.button--primary:contains("Next")')
    ->press();
  // The second tour tip should appear, confirm it has the expected content.
  $tip2 = $assert_session->waitForElementVisible('css', '.shepherd-enabled.tip-tour-test-3');
  $assert_session->pageTextNotContains('always the best dressed');
  $tip_text = $tip2->getText();
  $this->assertStringContainsString('The awesome image', $tip_text);
  $this->assertStringContainsString('2 of 3', $tip_text);
  $this->assertStringNotContainsString('End tour', $tip_text);
  // Click the next button.
  $tip2->find('css', '.button--primary:contains("Next")')
    ->press();
  // The third tour tip should appear, confirm it has the expected content.
  $tip3 = $assert_session->waitForElementVisible('css', '.shepherd-enabled.tip-tour-test-6');
  $assert_session->pageTextNotContains('The awesome image');
  $tip_text = $tip3->getText();
  $this->assertStringContainsString('Im all these things', $tip_text);
  $this->assertStringContainsString('3 of 3', $tip_text);
  $this->assertStringNotContainsString('Next', $tip_text);
  // The final tip should have a button to end the tour. Press and confirm all
  // tips removed.
  $tip3->find('css', '.button--primary:contains("End tour")')
    ->press();
  $assert_session->assertNoElementAfterWait('css', '.shepherd-enabled');
  $assert_session->pageTextNotContains('The awesome image');
}

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