JSWebWithWebDriverAssertTest.php 436 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Drupal\FunctionalJavascriptTests\Tests;
  3. use Drupal\FunctionalJavascriptTests\DrupalSelenium2Driver;
  4. /**
  5. * Tests for the JSWebAssert class using webdriver.
  6. *
  7. * @group javascript
  8. */
  9. class JSWebWithWebDriverAssertTest extends JSWebAssertTest {
  10. /**
  11. * {@inheritdoc}
  12. */
  13. protected $minkDefaultDriverClass = DrupalSelenium2Driver::class;
  14. /**
  15. * {@inheritdoc}
  16. */
  17. protected $defaultTheme = 'stark';
  18. }