Mercurial > hg > isophonics-drupal-site
view core/tests/Drupal/FunctionalJavascriptTests/LegacyJavascriptTestBase.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
line wrap: on
line source
<?php namespace Drupal\FunctionalJavascriptTests; use Zumba\Mink\Driver\PhantomJSDriver; /** * Runs a browser test using PhantomJS. * * Base class for testing browser interaction implemented in JavaScript. */ abstract class LegacyJavascriptTestBase extends JavascriptTestBase { /** * {@inheritdoc} */ protected $minkDefaultDriverClass = PhantomJSDriver::class; /** * {@inheritdoc} */ public function assertSession($name = NULL) { // Return a WebAssert that supports status code and header assertions. return new JSWebAssert($this->getSession($name), $this->baseUrl); } }