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