當前位置: 首頁>>代碼示例>>PHP>>正文


PHP NodeElement::__construct方法代碼示例

本文整理匯總了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);
 }
開發者ID:stephenharris,項目名稱:WordPressBehatExtension,代碼行數:7,代碼來源:Notice.php

示例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);
 }
開發者ID:eltonoliveira,項目名稱:qa-tools,代碼行數:11,代碼來源:WebElement.php

示例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;
 }
開發者ID:stephenharris,項目名稱:WordPressBehatExtension,代碼行數:10,代碼來源:WPTableRow.php

示例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;
 }
開發者ID:icambridge,項目名稱:BehatPageObjectExtension,代碼行數:9,代碼來源:Element.php


注:本文中的Behat\Mink\Element\NodeElement::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。