AdminPage::searchDebugData PHP Method

searchDebugData() public method

public searchDebugData ( $dicomValue )
    public function searchDebugData($dicomValue)
    {
        //*[@id='debug_data']//*[contains(text(),'birth date: 21/3/1964')]
        $this->elements['debugData'] = array('xpath' => "//*[@id='debug_data']//*[contains(text(),'{$dicomValue}')]");
        if ($this->getElement('debugData')->isVisible()) {
            print "Search Value displayed correctly in the Debug Data!";
        } else {
            throw new BehaviorException("Warning!! Search Value not displayed correctly in the Debug Data!");
        }
    }