Conditions | 3 |
Paths | 4 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
21 | public function switchToIFrame($iFrameElement) |
||
22 | { |
||
23 | $iFrame = null; |
||
24 | |||
25 | if (is_string($iFrameElement)) { |
||
26 | $iFrame = $this->getElementObject($iFrameElement); |
||
27 | } |
||
28 | |||
29 | if (is_object($iFrameElement)) { |
||
30 | $iFrame = $iFrameElement; |
||
31 | } |
||
32 | |||
33 | $this->switchToIFrameByCssId($iFrame); |
||
34 | } |
||
35 | |||
60 |