Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | public function testBackofficeOpen() |
||
42 | { |
||
43 | $this->webDriver->get($this->configuration['magentoUrl'].self::BACKOFFICE_FOLDER); |
||
44 | $condition = WebDriverExpectedCondition::titleContains(self::BACKOFFICE_TITLE); |
||
45 | $this->webDriver->wait()->until($condition); |
||
46 | $this->assertTrue((bool) $condition); |
||
47 | $this->quit(); |
||
48 | } |
||
50 |