| 1 | <?php |
||
| 9 | class Home implements StaticNavigatorInterface |
||
| 10 | { |
||
| 11 | |||
| 12 | const NAVIGATOR = 'Home'; |
||
| 13 | |||
| 14 | protected $webDriver; |
||
| 15 | protected $baseTheme; |
||
| 16 | protected $loaded; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Home constructor. |
||
| 20 | * @param $baseTheme |
||
| 21 | * @param $webDriver |
||
| 22 | */ |
||
| 23 | public function __construct(BaseThemeInterface $baseTheme, WebDriver $webDriver, WaitForPageLoaded $loaded) |
||
| 29 | |||
| 30 | |||
| 31 | public function navigateTo() |
||
| 37 | |||
| 38 | } |