| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public static function create( |
||
| 10 | $url = 'http://localhost:4444/wd/hub', |
||
| 11 | $desired_capabilities = null, |
||
| 12 | $connection_timeout_in_ms = null, |
||
| 13 | $request_timeout_in_ms = null, |
||
| 14 | $http_proxy = null, |
||
| 15 | $http_proxy_port = null |
||
| 16 | ) { |
||
| 17 | return WebDriver::create($url, $desired_capabilities, $connection_timeout_in_ms, $request_timeout_in_ms, $http_proxy, $http_proxy_port); |
||
| 18 | } |
||
| 19 | |||
| 20 | } |