public function testCombine() { $result = Locator::combine('//button[@value="Click Me"]', '//a[.="Click Me"]'); $this->assertEquals('//button[@value="Click Me"] | //a[.="Click Me"]', $result); $result = Locator::combine('button[value="Click Me"]', '//a[.="Click Me"]'); $this->assertEquals('descendant-or-self::button[@value = \'Click Me\'] | //a[.="Click Me"]', $result); $xml = new SimpleXMLElement("<root><button value='Click Me' /></root>"); $this->assertNotEmpty($xml->xpath($result)); $xml = new SimpleXMLElement("<root><a href='#'>Click Me</a></root>"); $this->assertNotEmpty($xml->xpath($result)); }
/** * @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; }
/** * @param $context * @param $radio_or_checkbox * @param bool $byValue * @return mixed|null */ protected function findCheckable($context, $radio_or_checkbox, $byValue = false) { if ($radio_or_checkbox instanceof \WebDriverElement) { return $radio_or_checkbox; } if (is_array($radio_or_checkbox) or $radio_or_checkbox instanceof \WebDriverBy) { return $this->matchFirstOrFail($this->webDriver, $radio_or_checkbox); } $locator = Crawler::xpathLiteral($radio_or_checkbox); $xpath = Locator::combine("//input[./@type = 'checkbox'][(./@id = //label[contains(normalize-space(string(.)), {$locator})]/@for) or ./@placeholder = {$locator}]", "//label[contains(normalize-space(string(.)), {$locator})]//.//input[./@type = 'checkbox']", "//input[./@type = 'radio'][(./@id = //label[contains(normalize-space(string(.)), {$locator})]/@for) or ./@placeholder = {$locator}]", "//label[contains(normalize-space(string(.)), {$locator})]//.//input[./@type = 'radio']"); if ($byValue) { $xpath = Locator::combine($xpath, "//input[./@type = 'checkbox'][./@value = {$locator}]", "//input[./@type = 'radio'][./@value = {$locator}]"); } /** @var $context \WebDriverElement * */ $els = $context->findElements(\WebDriverBy::xpath($xpath)); if (count($els)) { return reset($els); } $els = $this->match($context, $radio_or_checkbox); if (count($els)) { return reset($els); } return null; }
<?php use Codeception\Util\Locator; $I = new AcceptanceTester($scenario); $I->am('Any user'); $I->wantTo('do a login on the web application'); $I->lookForwardTo('access all features that my access level grant'); $I->amOnPage('/'); $I->fillField(Locator::combine('//*[@data-qa="auth-login"]', '//input[@data-qa="auth-login"]'), '*****@*****.**'); $I->fillField(['xpath' => '//*[@data-qa="auth-pass"]'], 'socialbase'); $I->click(['xpath' => '//button[@data-qa="auth-button"]']); $I->see('SB Suporte', ['xpath' => '//div[@data-qa="profile-my-name"]']); $I->see('CARGO', ['xpath' => '//div[@data-qa="profile-my-job"]']);