Searched refs:escapeQuotes (Results 1 – 4 of 4) sorted by relevance
148 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),
85 $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) . ')]';
6 value=escapeQuotes(value);
14 public static function escapeQuotes($xpathToEscape) function in Facebook\\WebDriver\\Support\\XPathEscaper