mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/15997] Use higher than default timeout for webdriver connections
PHPBB3-15997
This commit is contained in:
@@ -80,7 +80,12 @@ class phpbb_ui_test_case extends phpbb_test_case
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
$capabilities = DesiredCapabilities::firefox();
|
$capabilities = DesiredCapabilities::firefox();
|
||||||
self::$webDriver = RemoteWebDriver::create(self::$host . ':' . self::$port, $capabilities);
|
self::$webDriver = RemoteWebDriver::create(
|
||||||
|
self::$host . ':' . self::$port,
|
||||||
|
$capabilities,
|
||||||
|
60 * 1000, // 60 seconds connection timeout
|
||||||
|
60 * 1000 // 60 seconds request timeout
|
||||||
|
);
|
||||||
} catch (WebDriverCurlException $e) {
|
} catch (WebDriverCurlException $e) {
|
||||||
self::markTestSkipped('PhantomJS webserver is not running.');
|
self::markTestSkipped('PhantomJS webserver is not running.');
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user