1: <?php
2: namespace Azalea\Selenium\EHR;
3:
4: /**
5: * Page object which represents the EHR base page.
6: */
7: class EHR extends Application
8: {
9: protected $heading = "Azalea EHR";
10:
11: /**
12: * Logs into the application as an admin.
13: * @return \Azalea\Selenium\EHR\EHR
14: */
15: public static function loginAsAdmin($driver)
16: {
17: return EHR::loginAs($driver, new User\EHRAdminTestingUser());
18: }
19: }
20: ?>