PMA_SeleniumBase::skipIfNotPMADB PHP 메소드

skipIfNotPMADB() 보호된 메소드

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