You are here

protected function OffCanvasTestBase::drupalGet in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/FunctionalJavascript/OffCanvasTestBase.php \Drupal\Tests\system\FunctionalJavascript\OffCanvasTestBase::drupalGet()
  2. 9 core/modules/system/tests/src/FunctionalJavascript/OffCanvasTestBase.php \Drupal\Tests\system\FunctionalJavascript\OffCanvasTestBase::drupalGet()

File

core/modules/system/tests/src/FunctionalJavascript/OffCanvasTestBase.php, line 23

Class

OffCanvasTestBase
Base class contains common test functionality for the Off-canvas dialog.

Namespace

Drupal\Tests\system\FunctionalJavascript

Code

protected function drupalGet($path, array $options = [], array $headers = []) {
  $return = parent::drupalGet($path, $options, $headers);
  $this
    ->assertPageLoadComplete();
  return $return;
}