_helper = new Helper($this); $this->setBrowser($this->_helper->getBrowserString()); $this->setBrowserUrl( TESTSUITE_PHPMYADMIN_HOST . TESTSUITE_PHPMYADMIN_URL ); } /** * Tests the SQL query tab with a null query * * @return void */ public function testQueryTabWithNullValue() { $this->_helper->login(TESTSUITE_USER, TESTSUITE_PASSWORD); $this->byLinkText("SQL")->click(); $this->_helper->waitForElement("byId", "queryboxf"); $this->byId("button_submit_query")->click(); $this->assertEquals("Missing value in the form!", $this->alertText()); } } ?>