1 | <?php |
||
7 | abstract class AbstractSelectorAssertion extends AbstractAssertion |
||
8 | { |
||
9 | |||
10 | protected $selector; |
||
11 | |||
12 | protected $by; |
||
13 | |||
14 | /** |
||
15 | * @param $selector |
||
16 | * @return $this |
||
17 | */ |
||
18 | |||
19 | public function setSelector($selector) |
||
24 | |||
25 | /** |
||
26 | * @param $by |
||
27 | * @return $this |
||
28 | */ |
||
29 | |||
30 | public function setBy($by) |
||
35 | |||
36 | /** |
||
37 | * @return mixed |
||
38 | */ |
||
39 | public function getBy() |
||
43 | |||
44 | /** |
||
45 | * @return mixed |
||
46 | */ |
||
47 | public function getSelector() |
||
51 | |||
52 | } |