Lines Matching full:s
69 sprintf('No %s are selected', $this->type === 'radio' ? 'radio buttons' : 'checkboxes')
114 sprintf('Cannot locate %s with value: %s', $this->type, $value)
130 … throw new NoSuchElementException(sprintf('Cannot locate %s with index: %d', $this->type, $index));
147 $partial ? 'contains(normalize-space(.), %s)' : 'normalize-space(.) = %s',
152 $xpathNormalize = sprintf('%s[%s]', $xpath, $normalizeFilter);
156 $idFilter = sprintf('@for = %s', XPathEscaper::escapeQuotes($id));
158 $xpath .= sprintf(' | //label[%s]', $idFilter);
159 $xpathNormalize .= sprintf(' | //label[%s and %s]', $idFilter, $normalizeFilter);
195 … $valueSelector = $value ? sprintf(' and @value = %s', XPathEscaper::escapeQuotes($value)) : '';
203 … sprintf('.//input[@name = %s%s]', XPathEscaper::escapeQuotes($this->name), $valueSelector)
211 '//form[@id = %1$s]//input[@name = %2$s%3$s'
212 . ' and ((boolean(@form) = true() and @form = %1$s) or boolean(@form) = false())]'
213 . ' | //input[@form = %1$s and @name = %2$s%3$s]',