2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,10 @@ public ChainBuilder openVisitsTab(String patientUuid) {
144
144
return exec (httpService .getVisitsOfPatient (patientUuid ));
145
145
}
146
146
147
+ public ChainBuilder openAppointmentsTab (String patientUuid ) {
148
+ return exec (httpService .getAppointments (patientUuid ));
149
+ }
150
+
147
151
public ChainBuilder addDrugOrder (String patientUuid , String visitUuid , String currentUserUuid ) {
148
152
String asprin_162_5mg = "a722710f-403b-451f-804b-09f8624b0838" ;
149
153
String asprinConcept = "71617AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" ;
Original file line number Diff line number Diff line change @@ -52,6 +52,8 @@ public ScenarioBuilder getScenarioBuilder() {
52
52
.pause (5 )
53
53
.exec (registry .addAttachment ("#{patient_uuid}" ))
54
54
.pause (5 )
55
+ .exec (registry .openAppointmentsTab ("#{patient_uuid}" ))
56
+ .pause (5 )
55
57
.exec (registry .addDrugOrder ("#{patient_uuid}" , "#{visitUuid}" , "#{currentUserUuid}" ))
56
58
.pause (5 )
57
59
.exec (registry .addVisitNote ("#{patient_uuid}" , "#{currentUserUuid}" ))
0 commit comments