Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function selectPaymentMethod($paymentMethod) |
||
26 | { |
||
27 | $radio = $this->getDocument()->findField($paymentMethod); |
||
28 | |||
29 | if (null === $radio) { |
||
30 | throw new ElementNotFoundException('Payment method not found or it is not visible'); |
||
31 | } |
||
32 | |||
33 | $this->getDocument()->fillField($radio->getAttribute('name'), $radio->getAttribute('value')); |
||
34 | } |
||
35 | |||
52 |