| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 40 | public function setUp() |
||
| 41 | { |
||
| 42 | $this->params = new Params($this->getAnnotations()); |
||
| 43 | $provider = $this->caps(); |
||
| 44 | $caps = $provider->handle(); |
||
| 45 | |||
| 46 | $this->driver = RemoteWebDriver::create($provider->serverUrl(), $caps); |
||
| 47 | $this->driver->setBaseUrl($_ENV['BASE_URL']); |
||
| 48 | $this->driver->get($this->params->getPath()); |
||
| 49 | $provider->configure($this->driver); |
||
| 50 | } |
||
| 66 |