1 | <?php |
||
9 | trait StorePage |
||
10 | { |
||
11 | /** |
||
12 | * @param array $urlParameters |
||
13 | * @return mixed |
||
14 | */ |
||
15 | public abstract function open(array $urlParameters = array()); |
||
16 | |||
17 | /** |
||
18 | * @param string $toBeReplaced |
||
19 | * @param string $replace |
||
20 | * @param array $urlParameters |
||
21 | */ |
||
22 | public function openStorePage($toBeReplaced = '', $replace = '', array $urlParameters = []) |
||
27 | |||
28 | /** |
||
29 | * @param string $toBeReplaced |
||
30 | * @param string $replace |
||
31 | */ |
||
32 | public function setPageObjectPath($toBeReplaced, $replace) |
||
38 | } |
||
39 |