Lines Matching defs:text
103 public function selectByVisibleText($text)
106 $xpath = './/option[normalize-space(.) = ' . XPathEscaper::escapeQuotes($text) . ']';
117 // Since the mechanism of getting the text in xpath is not the same as
121 if ($option->getText() === $text) {
133 sprintf('Cannot locate option with text: %s', $text)
138 public function selectByVisiblePartialText($text)
141 $xpath = './/option[contains(normalize-space(.), ' . XPathEscaper::escapeQuotes($text) . ')]';
154 sprintf('Cannot locate option with text: %s', $text)
198 public function deselectByVisibleText($text)
204 $xpath = './/option[normalize-space(.) = ' . XPathEscaper::escapeQuotes($text) . ']';
211 public function deselectByVisiblePartialText($text)
217 $xpath = './/option[contains(normalize-space(.), ' . XPathEscaper::escapeQuotes($text) . ')]';