Skip to content

Commit 95c36d0

Browse files
committed
lower timeouts
1 parent 056418b commit 95c36d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/features/bootstrap/FeatureContext.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,9 @@ public function iAmAuthenticatedAsAdmin() {
162162
$this->fillField('password', $this->params['admin_password']);
163163
$this->pressButton('Continue');
164164
$this->getSession()->getDriver()->setTimeouts([
165-
'script' => 3000000,
166-
'implicit' => 3000000,
167-
'page load' => 3000000 //https://web.archive.org/web/20160730151941/http://alex-panshin.me/blog/how-to-set-pageload-timeout-for-selenium-with-behat/
165+
'script' => 30000,
166+
'implicit' => 30000,
167+
'page load' => 30000 //https://web.archive.org/web/20160730151941/http://alex-panshin.me/blog/how-to-set-pageload-timeout-for-selenium-with-behat/
168168

169169
]);
170170
}

0 commit comments

Comments
 (0)