本文整理匯總了PHP中Behat\Mink\Element\NodeElement::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP NodeElement::__construct方法的具體用法?PHP NodeElement::__construct怎麽用?PHP NodeElement::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Behat\Mink\Element\NodeElement
的用法示例。
在下文中一共展示了NodeElement::__construct方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __construct
public function __construct(NodeElement $node, Session $session)
{
if (!$node->hasClass(self::NOTICE_CLASS)) {
throw new \InvalidArgumentException(sprintf('Provided node does not have class %s', self::NOTICE_CLASS));
}
parent::__construct($node->getXpath(), $session);
}
示例2: __construct
/**
* Initializes web element.
*
* @param array $selenium_selector Element selector.
* @param Session $session Session.
*/
public function __construct(array $selenium_selector, Session $session)
{
$this->seleniumSelector = $selenium_selector;
parent::__construct($this->seleniumSelectorToXpath($session), $session);
}
示例3: __construct
/**
* A bit of a hack, we require the Session to create instances of WPTableRow, so we store it here
* @param NodeElement $node
* @param Session $session
*/
public function __construct(NodeElement $node, Session $session)
{
parent::__construct($node->getXpath(), $session);
$this->session = $session;
}
示例4: __construct
/**
* @param Session $session
* @param Factory $factory
*/
public function __construct(Session $session, Factory $factory)
{
parent::__construct($this->getSelectorAsXpath($session->getSelectorsHandler()), $session);
$this->factory = $factory;
}