Home
last modified time | relevance | path

Searched refs:xpath (Results 1 – 12 of 12) sorted by relevance

/template/strap/vendor/php-webdriver/webdriver/lib/
H A DWebDriverSelect.php85 $xpath = './/option[@value = ' . XPathEscaper::escapeQuotes($value) . ']';
86 $options = $this->element->findElements(WebDriverBy::xpath($xpath));
106 $xpath = './/option[normalize-space(.) = ' . XPathEscaper::escapeQuotes($text) . ']';
107 $options = $this->element->findElements(WebDriverBy::xpath($xpath));
141 … $xpath = './/option[contains(normalize-space(.), ' . XPathEscaper::escapeQuotes($text) . ')]';
142 $options = $this->element->findElements(WebDriverBy::xpath($xpath));
191 $xpath = './/option[@value = ' . XPathEscaper::escapeQuotes($value) . ']';
192 $options = $this->element->findElements(WebDriverBy::xpath($xpath));
204 $xpath = './/option[normalize-space(.) = ' . XPathEscaper::escapeQuotes($text) . ']';
205 $options = $this->element->findElements(WebDriverBy::xpath($xpath));
[all …]
H A DAbstractWebDriverCheckboxOrRadio.php151 $xpath = 'ancestor::label';
152 $xpathNormalize = sprintf('%s[%s]', $xpath, $normalizeFilter);
158 $xpath .= sprintf(' | //label[%s]', $idFilter);
163 $element->findElement(WebDriverBy::xpath($xpathNormalize));
172 if ($text !== $element->findElement(WebDriverBy::xpath($xpath))->getText()) {
198 $form = $this->element->findElement(WebDriverBy::xpath('ancestor::form'));
202 return $form->findElements(WebDriverBy::xpath(
210 WebDriverBy::xpath(sprintf(
H A DWebDriverBy.php127 * @param string $xpath
130 public static function xpath($xpath) function in Facebook\\WebDriver\\WebDriverBy
132 return new static('xpath', $xpath);
/template/strap/ComboStrap/Xml/
H A DXmlDocument.php405 $nodes = $this->xpath("//*[namespace-uri()='$namespaceUri']");
415 $nodes = $this->xpath("//@*[namespace-uri()='$namespaceUri']");
428 $xpath = new DOMXPath($this->getDomDocument());
429 $DOMNodeList = $xpath->query("namespace::*", $this->getDomDocument()->ownerDocument);
447 $xpath = new DOMXPath($this->getDomDocument());
452 $DOMNodeList = $xpath->query('namespace::*', $this->getDomDocument()->ownerDocument);
480 function xpath($query, DOMElement $contextNode = null): DOMNodeList function in ComboStrap\\Xml\\XmlDocument
718 $xpath = $this->cssSelectorToXpath($selector);
719 $domNodeList = $this->xpath($xpath);
777 public function xpathFirstDomElement(string $xpath): DOMElement argument
[all …]
H A DXmlElement.php104 $xpath = $this->document->cssSelectorToXpath($selector);
106 foreach ($this->document->xpath($xpath, $this->domElement) as $child) {
H A DXmlSystems.php347 $svgElement = $xmlDocument->xpath($xpathQuery);
/template/strap/ComboStrap/
H A DFetcherSvg.php271 $nodes = $this->getXmlDocument()->xpath("//*[namespace-uri()='$namespaceUri']");
272 … $attributes = $this->getXmlDocument()->xpath("//@*[namespace-uri()='$namespaceUri']");
284 $commentNodes = $this->getXmlDocument()->xpath("//comment()");
315 $nodes = $this->getXmlDocument()->xpath("//@$value");
402 … $elementNodeList = $this->getXmlDocument()->xpath("//*[local-name()='$elementToDeleteIfEmpty']");
1155 $svgFillsElement = $this->getXmlDocument()->xpath("//*[@fill]");
1272 … $svgPaths = $this->getXmlDocument()->xpath("//*[local-name()='path' or local-name()='g']");
1291 … $firsFillElement = $this->getXmlDocument()->xpath("//*[@fill][1]")->item(0);
1307 … $svgPaths = $this->getXmlDocument()->xpath("//*[local-name()='path']");
/template/strap/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteWebElement.php564 $children = $this->findElements(WebDriverBy::xpath('./*'));
/template/strap/vendor/carica/phpcss/
H A DREADME.md21 A small demo application can be found at: http://xpath.thomas.weinert.info/
/template/strap/resources/firebug/
H A Dfirebug-lite-1.4.js4361 },copyXPath:function(elt){var xpath=getElementXPath(elt);
4362 copyToClipboard(xpath)
4363 },persistor:function(context,xpath){var elts=xpath?getElementsByXPath(context.window.document,xpath argument
4372 },persistObject:function(elt,context){var xpath=getElementXPath(elt);
4373 return bind(this.persistor,top,xpath)
7038 this.getElementsByXPath=function(doc,xpath){var nodes=[]; argument
7039 try{var result=doc.evaluate(xpath,doc,null,XPathResult.ANY_TYPE,null);
7046 var xpath=this.cssToXPath(css);
7047 return this.getElementsByXPath(doc,xpath)
H A Dfirebug-lite-1.2-compressed.js127 …ry":function(_expression,_resultType,namespaceResolver,_result){return pi.xpath(_expression,_resul…
H A Dfirebug-lite-1.2.js2325 …return pi.xpath(_expression,_resultType||"ORDERED_NODE_SNAPSHOT_TYPE",this.environment.getElement(…