1: <?php
2: namespace Azalea\Selenium\App\Main;
3:
4: use Azalea\Selenium\Toolkit\View;
5:
6: class MainSearch extends View
7: {
8: /**
9: * Perform a search in the main search bar.
10: * Note that the search vertical is context dependent.
11: *
12: * @return $this
13: */
14: public function searchFor($text)
15: {
16: $this->type("search", $text)->press("Search");
17: return $this;
18: }
19: }
20:
21: ?>
22: