Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function run($rejected = false) |
||
27 | { |
||
28 | $this->validateStep(self::STEP); |
||
29 | //Click on confirm: |
||
30 | $confirmCheckbox = $this->webDriver->findElement(WebDriverBy::className('checkmark')); |
||
31 | $confirmCheckbox->click(); |
||
32 | $formContinue = $this->webDriver->findElement(WebDriverBy::name('continue_button')); |
||
33 | $formContinue->click(); |
||
34 | |||
35 | return true; |
||
36 | } |
||
38 |