Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function deleteHub(string $name): self |
||
10 | { |
||
11 | $I = $this->tester; |
||
12 | |||
13 | $I->click("//a[contains(text(), 'Delete')]"); |
||
14 | $I->seeInPopup('Are you sure you want to delete this item?'); |
||
15 | $I->acceptPopup(); |
||
16 | $I->seeInCurrentUrl(Url::to('@hub/index')); |
||
17 | $I->seeInTitle('Switches'); |
||
18 | $I->cantSee($name); |
||
19 | |||
20 | return $this; |
||
21 | } |
||
23 |