Lines Matching refs:sprintf
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));
146 $normalizeFilter = sprintf(
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)
210 WebDriverBy::xpath(sprintf(