public function BrowserWithJavascriptTest::testCreateScreenshot in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/FunctionalJavascriptTests/BrowserWithJavascriptTest.php \Drupal\FunctionalJavascriptTests\BrowserWithJavascriptTest::testCreateScreenshot()
Tests creating screenshots.
File
- core/
tests/ Drupal/ FunctionalJavascriptTests/ BrowserWithJavascriptTest.php, line 75
Class
- BrowserWithJavascriptTest
- Tests if we can execute JavaScript in the browser.
Namespace
Drupal\FunctionalJavascriptTestsCode
public function testCreateScreenshot() {
$this
->drupalGet('<front>');
$this
->createScreenshot('public://screenshot.jpg');
$this
->assertFileExists('public://screenshot.jpg');
}