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