Lines Matching refs:timeout

19    * @param int $timeout
28 …public function assertWaitOnAjaxRequest($timeout = 10000, $message = 'Unable to complete AJAX requ… argument
42 $result = $this->session->wait($timeout, $condition);
56 * @param int $timeout
64 public function waitForElement($selector, $locator, $timeout = 10000) { argument
67 $result = $page->waitFor($timeout / 1000, function () use ($page, $selector, $locator) {
82 * @param int $timeout
90 public function waitForElementRemoved($selector, $locator, $timeout = 10000) { argument
93 $result = $page->waitFor($timeout / 1000, function () use ($page, $selector, $locator) {
108 * @param int $timeout
116 public function waitForElementVisible($selector, $locator, $timeout = 10000) { argument
119 $result = $page->waitFor($timeout / 1000, function () use ($page, $selector, $locator) {
135 * @param int $timeout
141 public function waitForText($text, $timeout = 10000) { argument
143 return $page->waitFor($timeout / 1000, function () use ($page, $text) {
156 * @param int $timeout
162 public function waitForButton($locator, $timeout = 10000) { argument
163 return $this->waitForElement('named', ['button', $locator], $timeout);
171 * @param int $timeout
177 public function waitForLink($locator, $timeout = 10000) { argument
178 return $this->waitForElement('named', ['link', $locator], $timeout);
186 * @param int $timeout
192 public function waitForField($locator, $timeout = 10000) { argument
193 return $this->waitForElement('named', ['field', $locator], $timeout);
201 * @param int $timeout
207 public function waitForId($id, $timeout = 10000) { argument
208 return $this->waitForElement('named', ['id', $id], $timeout);
468 * @param int $timeout
476 …public function assertNoElementAfterWait($selector_type, $selector, $timeout = 10000, $message = '… argument
478 $end = $start + ($timeout / 1000);