本文整理匯總了PHP中Symfony\Component\DomCrawler\Crawler::xPathLiteral方法的典型用法代碼示例。如果您正苦於以下問題:PHP Crawler::xPathLiteral方法的具體用法?PHP Crawler::xPathLiteral怎麽用?PHP Crawler::xPathLiteral使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Symfony\Component\DomCrawler\Crawler
的用法示例。
在下文中一共展示了Crawler::xPathLiteral方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: findCheckable
/**
* @param $context
* @param $radioOrCheckbox
* @param bool $byValue
* @return mixed|null
*/
protected function findCheckable($context, $radioOrCheckbox, $byValue = false)
{
if ($radioOrCheckbox instanceof WebDriverElement) {
return $radioOrCheckbox;
}
if (is_array($radioOrCheckbox) or $radioOrCheckbox instanceof WebDriverBy) {
return $this->matchFirstOrFail($this->webDriver, $radioOrCheckbox);
}
$locator = Crawler::xpathLiteral($radioOrCheckbox);
if ($context instanceof WebDriverElement && $context->getTagName() === 'input') {
$contextType = $context->getAttribute('type');
if (!in_array($contextType, ['checkbox', 'radio'], true)) {
return null;
}
$nameLiteral = Crawler::xPathLiteral($context->getAttribute('name'));
$typeLiteral = Crawler::xPathLiteral($contextType);
$inputLocatorFragment = "input[@type = {$typeLiteral}][@name = {$nameLiteral}]";
$xpath = Locator::combine("ancestor::form//{$inputLocatorFragment}[(@id = ancestor::form//label[contains(normalize-space(string(.)), {$locator})]/@for) or @placeholder = {$locator}]", "ancestor::form//label[contains(normalize-space(string(.)), {$locator})]//{$inputLocatorFragment}");
if ($byValue) {
$xpath = Locator::combine($xpath, "ancestor::form//{$inputLocatorFragment}[@value = {$locator}]");
}
} else {
$xpath = Locator::combine("//input[@type = 'checkbox' or @type = 'radio'][(@id = //label[contains(normalize-space(string(.)), {$locator})]/@for) or @placeholder = {$locator}]", "//label[contains(normalize-space(string(.)), {$locator})]//input[@type = 'radio' or @type = 'checkbox']");
if ($byValue) {
$xpath = Locator::combine($xpath, "//input[@type = 'checkbox' or @type = 'radio'][@value = {$locator}]");
}
}
$els = $context->findElements(WebDriverBy::xpath($xpath));
if (count($els)) {
return reset($els);
}
$els = $context->findElements(WebDriverBy::xpath(str_replace('ancestor::form', '', $xpath)));
if (count($els)) {
return reset($els);
}
$els = $this->match($context, $radioOrCheckbox);
if (count($els)) {
return reset($els);
}
return null;
}