Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function run() |
||
25 | { |
||
26 | $this->validateStep(self::STEP); |
||
27 | //Click on confirm: |
||
28 | $confirmCheckbox = $this->webDriver->findElement(WebDriverBy::className('Form-checkboxSkin')); |
||
29 | $confirmCheckbox->click(); |
||
30 | $formContinue = $this->webDriver->findElement(WebDriverBy::name('form-continue')); |
||
31 | $formContinue->click(); |
||
32 | } |
||
34 |