function WebDriverTestBase::installModulesFromClassProperty
Install modules defined by `static::$modules`.
To install test modules outside of the testing environment, add
$settings['extension_discovery_scan_tests'] = TRUE;to your settings.php.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The container.
Overrides FunctionalTestSetupTrait::installModulesFromClassProperty
File
- 
              core/
tests/ Drupal/ FunctionalJavascriptTests/ WebDriverTestBase.php, line 69  
Class
- WebDriverTestBase
 - Runs a browser test using a driver that supports JavaScript.
 
Namespace
Drupal\FunctionalJavascriptTestsCode
protected function installModulesFromClassProperty(ContainerInterface $container) {
  self::$modules = [
    'js_testing_log_test',
    'jquery_keyevent_polyfill_test',
  ];
  if ($this->disableCssAnimations) {
    self::$modules[] = 'css_disable_transitions_test';
  }
  parent::installModulesFromClassProperty($container);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.