1: <?php
2: namespace Azalea\Selenium\EHR\UI\Patients;
3:
4: class PatientAssembly extends PatientSection
5: {
6: /** @override */
7: protected static $hash = "/patients/p/{pat_id}/assembly";
8: /** @override */
9: protected static $selectorSection = ".patients-PatientsAssemblyView";
10:
11: /**
12: * @override
13: * @return boolean
14: */
15: public function verify($args = array())
16: {
17: if (parent::verify($args)) {
18: $this->byCss($this->getSelectorSection());
19: return true;
20: }
21:
22: return false;
23: }
24: }