4 * Two ways to configure MW for these tests
5 * 1) If you are running multiple test suites, add the following in LocalSettings.php
6 * require_once("tests/selenium/SimpleSeleniumConfig.php");
7 * $wgSeleniumTestConfigs['SimpleSeleniumTestSuite'] = 'SimpleSeleniumConfig::getSettings';
9 * 2) Add the following to your Localsettings.php
10 * $wgDefaultSkin = 'chick';
12 class SimpleSeleniumTestSuite
extends SeleniumTestSuite
{
13 public function setUp() {
14 $this->setLoginBeforeTests( false );
18 public function addTests() {
20 'selenium/suites/SimpleSeleniumTestCase.php'
22 parent
::addTestFiles( $testFiles );