コード例 #1
0
ファイル: Browser.php プロジェクト: flrnull/acceptie
 /**
  * @param string $selector
  * @param string $pattern
  * @param int $timeout
  */
 public function waitForTextPattern($selector, $pattern, $timeout = null)
 {
     $this->_wait($timeout)->until(Condition::textPatternToBePresentInElement($this->_getWebDriverBy($selector), $pattern));
 }