login(); $this->open( $this->getUrl() . '/index.php?title=Special:Upload' ); $this->type( 'wpUploadFile', __DIR__ . "\\..\\data\\Wikipedia-logo-v2-de.png" ); $this->check( 'wpIgnoreWarning' ); $this->click( 'wpUpload' ); $this->waitForPageToLoad( 30000 ); $this->assertSeleniumHTMLContains( '//h1[@class="firstHeading"]', "Wikipedia-logo-v2-de.png" ); /* $this->open( $this->getUrl() . '/index.php?title=Image:' . ucfirst( $this->filename ) . '&action=delete' ); $this->type( 'wpReason', 'Remove test file' ); $this->click( 'mw-filedelete-submit' ); $this->waitForPageToLoad( 10000 ); // Todo: This message is localized $this->assertSeleniumHTMLContains( '//div[@id="bodyContent"]/p', ucfirst( $this->filename ) . '.*has been deleted.' ); */ } }