We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41251d5 commit c78f868Copy full SHA for c78f868
lib/remote/HttpCommandExecutor.php
@@ -134,8 +134,8 @@ public function __construct($url) {
134
'Accept: application/json',
135
)
136
);
137
- $this->setRequestTimeout(300000);
138
- $this->setConnectionTimeout(300000);
+ $this->setRequestTimeout(30000);
+ $this->setConnectionTimeout(30000);
139
}
140
141
/**
lib/remote/RemoteWebDriver.php
@@ -467,7 +467,7 @@ public function getSessionID() {
467
*/
468
public static function getAllSessions(
469
$url = 'http://localhost:4444/wd/hub',
470
- $timeout_in_ms = 300000
+ $timeout_in_ms = 30000
471
) {
472
$executor = new HttpCommandExecutor($url);
473
$executor->setConnectionTimeout($timeout_in_ms);
0 commit comments