Merge branch '3.2.x'

This commit is contained in:
Marc Alexander 2019-03-30 17:59:17 +01:00
commit 150f8b9218
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -75,7 +75,12 @@ class phpbb_ui_test_case extends phpbb_test_case
try {
$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) {
self::markTestSkipped('PhantomJS webserver is not running.');
}