From ca32f08966f1b51fcb19460f0996bb0c4048e6fe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 3 Dec 2011 13:29:22 +0100 Subject: Update to MediaWiki 1.18.0 * also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing --- maintenance/tests/selenium/SeleniumTestSuite.php | 46 ------------------------ 1 file changed, 46 deletions(-) delete mode 100644 maintenance/tests/selenium/SeleniumTestSuite.php (limited to 'maintenance/tests/selenium/SeleniumTestSuite.php') diff --git a/maintenance/tests/selenium/SeleniumTestSuite.php b/maintenance/tests/selenium/SeleniumTestSuite.php deleted file mode 100644 index ba178051..00000000 --- a/maintenance/tests/selenium/SeleniumTestSuite.php +++ /dev/null @@ -1,46 +0,0 @@ -isSetUp ) { - return; - } - $this->isSetUp = true; - $this->selenium = Selenium::getInstance(); - $this->selenium->start(); - $this->selenium->open( $this->selenium->getUrl() . '/index.php?setupTestSuite=' . $this->getName() ); - if ( $this->loginBeforeTests ) { - $this->login(); - } - } - - public function tearDown() { - $this->selenium->open( $this->selenium->getUrl() . '/index.php?clearTestSuite=' . $this->getName() ); - $this->selenium->stop(); - } - - public function login() { - $this->selenium->login(); - } - - public function loadPage( $title, $action ) { - $this->selenium->loadPage( $title, $action ); - } - - protected function setLoginBeforeTests( $loginBeforeTests = true ) { - $this->loginBeforeTests = $loginBeforeTests; - } -} -- cgit v1.2.3-54-g00ecf