Esempio n. 1
0
 /**
  * Checks XML response does not include provided XML.
  * Comparison is done by canonicalizing both xml`s.
  * Parameter can be passed either as XmlBuilder, DOMDocument, DOMNode, XML string, or array (if no attributes).
  *
  * @param $xml
  * @part xml
  */
 public function dontSeeXmlResponseIncludes($xml)
 {
     $this->assertNotContains(XmlUtils::toXml($xml)->C14N(), XmlUtils::toXml($this->connectionModule->_getResponseContent())->C14N(), "found in XML Response");
 }
Esempio n. 2
0
 public function amOnPage($page)
 {
     parent::amOnPage(ltrim($page, '/'));
 }