mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
Merge branch '3.2.x'
This commit is contained in:
commit
150f8b9218
1 changed files with 6 additions and 1 deletions
|
@ -75,7 +75,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.');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue