1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-13 20:28:44 +01:00

Merge branch '3.2.x' into 3.3.x

This commit is contained in:
Marc Alexander 2019-06-06 21:51:13 +02:00
commit 9e90b27ba1
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -74,12 +74,12 @@ class phpbb_ui_test_case extends phpbb_test_case
}
try {
$capabilities = DesiredCapabilities::firefox();
$capabilities = DesiredCapabilities::chrome();
self::$webDriver = RemoteWebDriver::create(
self::$host . ':' . self::$port,
$capabilities,
60 * 1000, // 60 seconds connection timeout
60 * 1000 // 60 seconds request timeout
30 * 1000, // 30 seconds connection timeout
30 * 1000 // 30 seconds request timeout
);
} catch (WebDriverCurlException $e) {
self::markTestSkipped('PhantomJS webserver is not running.');