1 | <?php |
||
11 | trait DriverSwitcher |
||
12 | { |
||
13 | public abstract function getElementObject($element); |
||
14 | |||
15 | public abstract function getDriver(); |
||
16 | |||
17 | /** |
||
18 | * @param string | Element $iFrameElement |
||
19 | * @throws \ReflectionException |
||
20 | */ |
||
21 | public function switchToIFrame($iFrameElement) |
||
42 | |||
43 | /** |
||
44 | * @param null|string $name |
||
45 | */ |
||
46 | public function switchToWindow($name = null) |
||
50 | } |
||
51 |