PMA_SeleniumBase::skipIfNotPMADB PHP Method

skipIfNotPMADB() protected method

Skips test if pmadb is not configured.
protected skipIfNotPMADB ( ) : void
return void
    protected function skipIfNotPMADB()
    {
        $this->url('chk_rel.php');
        if ($this->isElementPresent("byXPath", "//*[@color=\"red\"]")) {
            $this->markTestSkipped('The phpMyAdmin configuration storage is not working.');
        }
    }