Home
last modified time | relevance | path

Searched refs:escapeQuotes (Results 1 – 4 of 4) sorted by relevance

/template/strap/vendor/php-webdriver/webdriver/lib/
H A DAbstractWebDriverCheckboxOrRadio.php148 XPathEscaper::escapeQuotes($text)
156 $idFilter = sprintf('@for = %s', XPathEscaper::escapeQuotes($id));
195 … $valueSelector = $value ? sprintf(' and @value = %s', XPathEscaper::escapeQuotes($value)) : '';
203 … sprintf('.//input[@name = %s%s]', XPathEscaper::escapeQuotes($this->name), $valueSelector)
214 XPathEscaper::escapeQuotes($formId),
215 XPathEscaper::escapeQuotes($this->name),
H A DWebDriverSelect.php85 $xpath = './/option[@value = ' . XPathEscaper::escapeQuotes($value) . ']';
106 $xpath = './/option[normalize-space(.) = ' . XPathEscaper::escapeQuotes($text) . ']';
141 … $xpath = './/option[contains(normalize-space(.), ' . XPathEscaper::escapeQuotes($text) . ')]';
191 $xpath = './/option[@value = ' . XPathEscaper::escapeQuotes($value) . ']';
204 $xpath = './/option[normalize-space(.) = ' . XPathEscaper::escapeQuotes($text) . ']';
217 … $xpath = './/option[contains(normalize-space(.), ' . XPathEscaper::escapeQuotes($text) . ')]';
/template/amanuensis/inc/
Dscript.js6 value=escapeQuotes(value);
/template/strap/vendor/php-webdriver/webdriver/lib/Support/
H A DXPathEscaper.php14 public static function escapeQuotes($xpathToEscape) function in Facebook\\WebDriver\\Support\\XPathEscaper