Lines Matching refs:xpath
85 $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));
117 // Since the mechanism of getting the text in xpath is not the same as
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));
217 $xpath = './/option[contains(normalize-space(.), ' . XPathEscaper::escapeQuotes($text) . ')]';
218 $options = $this->element->findElements(WebDriverBy::xpath($xpath));