_generated\AcceptanceTesterActions::cantSeeXmlResponseMatchesXpath PHP Method

cantSeeXmlResponseMatchesXpath() public method

Checks wheather XML response does not match XPath php dontSeeXmlResponseMatchesXpath('//root/user[@id=1]');
See also: Codeception\Module\REST::dontSeeXmlResponseMatchesXpath()
public cantSeeXmlResponseMatchesXpath ( $xpath )
$xpath Conditional Assertion: Test won't be stopped on fail
    public function cantSeeXmlResponseMatchesXpath($xpath)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeXmlResponseMatchesXpath', func_get_args()));
    }
AcceptanceTesterActions