1: <?php
2: namespace Azalea\Selenium\EHR\UI\Settings\General\Users;
3:
4: class UsersList extends \Azalea\Selenium\EHR\UI\Grid
5: {
6: protected static $selector = ".settings-WebUsersList";
7: protected static $searchSelector = "#web_users_autoselect #autoselect_search";
8: protected static $title = "";
9: protected static $title_selector = "";
10:
11: public function verify($args = array())
12: {
13: $this->byCss($this->getSelector($args));
14: return true;
15: }
16:
17: public function getUserRow($relative_id)
18: {
19: return new UserRow($this->getCssByIndex($relative_id), $this);
20: }
21: }