setBrowser(Helper::getBrowserString()); $this->setBrowserUrl(TESTSUITE_PHPMYADMIN_HOST . TESTSUITE_PHPMYADMIN_URL); } /** * Tests the changing of the password * * @return void */ public function testChangePassword() { $log = new PmaSeleniumTestCase($this); $log->login(TESTSUITE_USER, TESTSUITE_PASSWORD); $this->click("link=Change password"); $this->waitForElementPresent("id=change_password_anchor"); try { $this->waitForElementPresent("id=text_pma_pw"); $this->assertEquals("", $this->getValue("text_pma_pw")); } catch (PHPUnit_Framework_AssertionFailedError $e) { array_push($this->verificationErrors, $e->toString()); } try { $this->waitForElementPresent("id=text_pma_pw2"); $this->assertEquals("", $this->getValue("text_pma_pw2")); } catch (PHPUnit_Framework_AssertionFailedError $e) { array_push($this->verificationErrors, $e->toString()); } try { $this->waitForElementPresent("id=generated_pw"); $this->assertEquals("", $this->getValue("generated_pw")); } catch (PHPUnit_Framework_AssertionFailedError $e) { array_push($this->verificationErrors, $e->toString()); } $this->click("button_generate_password"); $this->assertNotEquals("", $this->getValue("text_pma_pw")); $this->assertNotEquals("", $this->getValue("text_pma_pw2")); $this->assertNotEquals("", $this->getValue("generated_pw")); if (TESTSUITE_PASSWORD != "") { $this->type("text_pma_pw", TESTSUITE_PASSWORD); $this->type("text_pma_pw2", TESTSUITE_PASSWORD); $this->click("css=button:contains('Go')"); } else { $this->click("id=nopass_1"); $this->click("css=button:contains('Go')"); } $this->waitForElementPresent("id=result_query"); $this->assertTrue($this->isTextPresent("The profile has been updated.")); } } ?>