-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResetWindow.xaml
1121 lines (1121 loc) · 110 KB
/
ResetWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Activity mc:Ignorable="sap sap2010" x:Class="ResetWindow" xmlns="http://schemas.microsoft.com/netfx/2009/xaml/activities" xmlns:f="clr-namespace:Flinders_Foundation;assembly=Flinders.Foundation" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mva="clr-namespace:Microsoft.VisualBasic.Activities;assembly=System.Activities" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:sap="http://schemas.microsoft.com/netfx/2009/xaml/activities/presentation" xmlns:sap2010="http://schemas.microsoft.com/netfx/2010/xaml/activities/presentation" xmlns:scg="clr-namespace:System.Collections.Generic;assembly=mscorlib" xmlns:sco="clr-namespace:System.Collections.ObjectModel;assembly=mscorlib" xmlns:ui="http://schemas.uipath.com/workflow/activities" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<x:Members>
<x:Property sap2010:Annotation.AnnotationText="A flag indicating if the activity successfully completed its process" Name="ProcessSuccessful" Type="OutArgument(x:Boolean)" />
<x:Property sap2010:Annotation.AnnotationText="A message providing context to the success, or failure of the process undertaken by this activity" Name="ProcessMessage" Type="OutArgument(x:String)" />
<x:Property sap2010:Annotation.AnnotationText="A reference to the browser used to access the Student Management System" Name="ActiveBrowser" Type="InOutArgument(ui:Browser)" />
<x:Property sap2010:Annotation.AnnotationText="The string used to search for the window that needs to be opened" Name="WindowName" Type="InArgument(x:String)" />
</x:Members>
<mva:VisualBasic.Settings>
<x:Null />
</mva:VisualBasic.Settings>
<sap2010:Annotation.AnnotationText>UPTF00000170eyI8SGVscExpbms+a19fQmFja2luZ0ZpZWxkIjoiaHR0cHM6XC9cL2dpdGh1Yi5jb21cL2ZsaW5kZXJzdW5pXC9ycGEtRmxpbmRlcnMuRm91bmRhdGlvbi5TdHVkZW50U3lzdGVtXC93aWtpXC9SZXNldFdpbmRvdyIsIjxJbml0aWFsVG9vbHRpcD5rX19CYWNraW5nRmllbGQiOiJSZXNldCBhbiBvcGVuIHdpbmRvdyBpbiB0aGUgQ2kgdmVyc2lvbiBvZiB0aGUgU3R1ZGVudCBNYW5hZ2VtZW50IFN5c3RlbSBpbiB0aGUgY2xvdWQuIiwiPFZlcnNpb24+a19fQmFja2luZ0ZpZWxkIjoxfQ==</sap2010:Annotation.AnnotationText>
<sap:VirtualizedContainerService.HintSize>1104,8796</sap:VirtualizedContainerService.HintSize>
<sap2010:WorkflowViewState.IdRef>ActivityBuilder_1</sap2010:WorkflowViewState.IdRef>
<TextExpression.NamespacesForImplementation>
<sco:Collection x:TypeArguments="x:String">
<x:String>System.Activities</x:String>
<x:String>System.Activities.Statements</x:String>
<x:String>System.Activities.Expressions</x:String>
<x:String>System.Activities.Validation</x:String>
<x:String>System.Activities.XamlIntegration</x:String>
<x:String>Microsoft.VisualBasic</x:String>
<x:String>Microsoft.VisualBasic.Activities</x:String>
<x:String>System</x:String>
<x:String>System.Collections</x:String>
<x:String>System.Collections.Generic</x:String>
<x:String>System.Data</x:String>
<x:String>System.Diagnostics</x:String>
<x:String>System.Drawing</x:String>
<x:String>System.IO</x:String>
<x:String>System.Linq</x:String>
<x:String>System.Net.Mail</x:String>
<x:String>System.Xml</x:String>
<x:String>System.Xml.Linq</x:String>
<x:String>System.Windows.Markup</x:String>
<x:String>UiPath.Core</x:String>
<x:String>UiPath.Core.Activities</x:String>
<x:String>System.Collections.ObjectModel</x:String>
<x:String>System.Activities.DynamicUpdate</x:String>
<x:String>System.Reflection</x:String>
<x:String>System.Runtime.InteropServices</x:String>
</sco:Collection>
</TextExpression.NamespacesForImplementation>
<TextExpression.ReferencesForImplementation>
<sco:Collection x:TypeArguments="AssemblyReference">
<AssemblyReference>System.Activities</AssemblyReference>
<AssemblyReference>Microsoft.VisualBasic</AssemblyReference>
<AssemblyReference>mscorlib</AssemblyReference>
<AssemblyReference>System.Data</AssemblyReference>
<AssemblyReference>System.Data.DataSetExtensions</AssemblyReference>
<AssemblyReference>System</AssemblyReference>
<AssemblyReference>System.Drawing</AssemblyReference>
<AssemblyReference>System.Core</AssemblyReference>
<AssemblyReference>System.Xml</AssemblyReference>
<AssemblyReference>System.Xml.Linq</AssemblyReference>
<AssemblyReference>PresentationFramework</AssemblyReference>
<AssemblyReference>WindowsBase</AssemblyReference>
<AssemblyReference>PresentationCore</AssemblyReference>
<AssemblyReference>System.Xaml</AssemblyReference>
<AssemblyReference>UiPath.System.Activities</AssemblyReference>
<AssemblyReference>UiPath.UiAutomation.Activities</AssemblyReference>
<AssemblyReference>System.ServiceModel</AssemblyReference>
<AssemblyReference>System.ValueTuple</AssemblyReference>
<AssemblyReference>UiPath.System.Activities.Design</AssemblyReference>
<AssemblyReference>System.Memory</AssemblyReference>
</sco:Collection>
</TextExpression.ReferencesForImplementation>
<Sequence sap2010:Annotation.AnnotationText="Reset an open window in the Ci version of the Student Management System in the cloud." DisplayName="ResetWindow" sap:VirtualizedContainerService.HintSize="1114.4,8731.2" sap2010:WorkflowViewState.IdRef="Sequence_2">
<Sequence.Variables>
<Variable x:TypeArguments="x:Boolean" sap2010:Annotation.AnnotationText="A flag indicating that a specific element exists on screen" Name="elementExists" />
<Variable x:TypeArguments="x:Int32" sap2010:Annotation.AnnotationText="The default delay value for interacting with UI elements" Default="10000" Name="defaultDelayValue" />
</Sequence.Variables>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:Comment sap:VirtualizedContainerService.HintSize="1072.8,113.6" sap2010:WorkflowViewState.IdRef="Comment_1" Text="There is no unit test for this activity. As it is a core component other unit tests that interact with the Student Management System will highlight issues with it." />
<Sequence sap2010:Annotation.AnnotationText="Initialise variables and arguments prior to process execution" sap:VirtualizedContainerService.HintSize="1072.8,600" sap2010:WorkflowViewState.IdRef="Sequence_1">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="333.6,60" sap2010:WorkflowViewState.IdRef="Assign_1">
<Assign.To>
<OutArgument x:TypeArguments="x:Boolean">[ProcessSuccessful]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:Boolean">False</InArgument>
</Assign.Value>
</Assign>
<Assign sap:VirtualizedContainerService.HintSize="333.6,60" sap2010:WorkflowViewState.IdRef="Assign_2">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[ProcessMessage]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[String.Empty]</InArgument>
</Assign.Value>
</Assign>
<ui:CheckFalse sap2010:Annotation.AnnotationText="Check to make sure the Window Name argument is supplied" DisplayName="Check False" ErrorMessage="The 'WindowName' argument is required" Expression="[isNothing(WindowName)]" sap:VirtualizedContainerService.HintSize="333.6,132" sap2010:WorkflowViewState.IdRef="CheckFalse_1">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:CheckFalse>
<Assign sap2010:Annotation.AnnotationText="Trim and lower case the WindowName argument for more reliable comparison" sap:VirtualizedContainerService.HintSize="333.6,104" sap2010:WorkflowViewState.IdRef="Assign_3">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[WindowName]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[WindowName.Trim().ToLower()]</InArgument>
</Assign.Value>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</Assign>
</Sequence>
<TryCatch sap2010:Annotation.AnnotationText="Try to get a reference to the browser session that has the Ci Application running within it. " DisplayName="Try Catch" sap:VirtualizedContainerService.HintSize="1072.8,1091.2" sap2010:WorkflowViewState.IdRef="TryCatch_4">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<TryCatch.Try>
<Sequence sap2010:Annotation.AnnotationText="Check to see if a browser instance has been passed into the workflow" sap:VirtualizedContainerService.HintSize="1036,828.8" sap2010:WorkflowViewState.IdRef="Sequence_18">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If sap2010:Annotation.AnnotationText="Was the ActiveBrower argument set?" Condition="[Information.IsNothing(ActiveBrowser) = True]" sap:VirtualizedContainerService.HintSize="994.4,572" sap2010:WorkflowViewState.IdRef="If_7">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence sap2010:Annotation.AnnotationText="ActiveBrowser argument is not set" sap:VirtualizedContainerService.HintSize="475.2,381.6" sap2010:WorkflowViewState.IdRef="Sequence_16">
<Sequence.Variables>
<Variable x:TypeArguments="x:String" sap2010:Annotation.AnnotationText="The URL in Okta for the specified Student Management System environment." Name="studentSystemUrl" />
</Sequence.Variables>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="433.6,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_7" Level="Trace" Message="["ActiveBrowser argument not set, attempting to bind to browser"]" />
<ui:BrowserScope Browser="{x:Null}" SearchScope="{x:Null}" TimeoutMS="{x:Null}" BrowserType="IE" DisplayName="Attach Browser" sap:VirtualizedContainerService.HintSize="433.6,124.8" sap2010:WorkflowViewState.IdRef="BrowserScope_6" Selector="<html title='TechnologyOne' />" UiBrowser="[ActiveBrowser]">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
</ActivityAction>
</ui:BrowserScope.Body>
</ui:BrowserScope>
</Sequence>
</If.Then>
<If.Else>
<Sequence sap2010:Annotation.AnnotationText="ActiveBrowser argument is set" sap:VirtualizedContainerService.HintSize="475.2,381.6" sap2010:WorkflowViewState.IdRef="Sequence_17">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="433.6,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_8" Level="Trace" Message="["ActiveBrowser argument was set, attempting to use it"]" />
<ui:BrowserScope SearchScope="{x:Null}" Selector="{x:Null}" TimeoutMS="{x:Null}" Browser="[ActiveBrowser]" BrowserType="IE" DisplayName="Attach Browser" sap:VirtualizedContainerService.HintSize="433.6,124.8" sap2010:WorkflowViewState.IdRef="BrowserScope_7" UiBrowser="[ActiveBrowser]">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
</ActivityAction>
</ui:BrowserScope.Body>
</ui:BrowserScope>
</Sequence>
</If.Else>
</If>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="994.4,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_9" Level="Trace" Message="[String.Format("Reference to the browser '{0}' has been acquired.", ActiveBrowser)]" />
</Sequence>
</TryCatch.Try>
<TryCatch.Catches>
<Catch x:TypeArguments="s:Exception" sap:VirtualizedContainerService.HintSize="1039.2,22.4" sap2010:WorkflowViewState.IdRef="Catch`1_4">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ActivityAction x:TypeArguments="s:Exception">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="s:Exception" Name="exception" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Catch any exceptions and throw a BusinessRuleException" sap:VirtualizedContainerService.HintSize="375.2,337.6" sap2010:WorkflowViewState.IdRef="Sequence_19">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="333.6,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_10" Level="Error" Message="[exception]" />
<f:ThrowBusinessRuleException sap:VirtualizedContainerService.HintSize="333.6,80.8" sap2010:WorkflowViewState.IdRef="ThrowBusinessRuleException_4" Message="[String.Format("Attempt to use the active Ci Application session failed")]" TakeScreenshot="True" />
</Sequence>
</ActivityAction>
</Catch>
</TryCatch.Catches>
</TryCatch>
<Switch x:TypeArguments="x:String" sap2010:Annotation.AnnotationText="Determine which window needs to be reset and take appropriate action." DisplayName="Switch" Expression="[WindowName]" sap:VirtualizedContainerService.HintSize="1072.8,6682.4" sap2010:WorkflowViewState.IdRef="Switch`1_2">
<Switch.Default>
<f:ThrowNotImplementedException sap:VirtualizedContainerService.HintSize="200,22" sap2010:WorkflowViewState.IdRef="ThrowNotImplementedException_1" Message="[String.Format("A workflow to reset the '{0}' window has not been implemented yet", WindowName)]" />
</Switch.Default>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<TryCatch x:Key="student comments" sap2010:Annotation.AnnotationText="Try to reset the Student Comments window" sap:VirtualizedContainerService.HintSize="595.2,3360.8" sap2010:WorkflowViewState.IdRef="TryCatch_2">
<TryCatch.Variables>
<Variable x:TypeArguments="x:Boolean" sap2010:Annotation.AnnotationText="A flag indicating that a specific element exists on screen" Name="elementExists" />
</TryCatch.Variables>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<TryCatch.Try>
<ui:BrowserScope SearchScope="{x:Null}" Selector="{x:Null}" TimeoutMS="{x:Null}" UiBrowser="{x:Null}" Browser="[ActiveBrowser]" BrowserType="IE" DisplayName="Attach Browser" sap:VirtualizedContainerService.HintSize="558.4,3168" sap2010:WorkflowViewState.IdRef="BrowserScope_3" InformativeScreenshot="d1462725ad6b2109c9772d80cddc7861">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Undertake the steps necessary to reset the Student Comment Maintenance window" DisplayName="Do" sap:VirtualizedContainerService.HintSize="524.8,3020.8" sap2010:WorkflowViewState.IdRef="Sequence_10">
<Sequence.Variables>
<Variable x:TypeArguments="x:Int32" sap2010:Annotation.AnnotationText="The default delay value for interacting with UI elements" Default="10000" Name="defaultDelayValue" />
</Sequence.Variables>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:ImageFound sap2010:Annotation.AnnotationText="Check to see if the Student Comment Maintenance dialog is open" DisplayName="Image Exists" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="483.2,151.2" sap2010:WorkflowViewState.IdRef="ImageFound_1">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAANkAAAAXCAYAAACGXOqyAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAOdSURBVHhe7Zi9deswDIW1iju3WcG9F/AOrlxmA5+M4DbZIlX2yCp6BCmKAAiQ1A/93ktQfOfYlgBeALyUkuH963s0DKMfZjLD6IyZzDA6YyYzjM6YyQyjM2Yyw+iMmcwwOmMmM4zOFE12Ow/jMCDOD/G+LbxdX7rkbcGvjesbLuNNuO83EGb9Ml4+5OvvX4/xtHAPhJy/t6cRxWSf4+WYN/R2fR3f4vf7ZRyO6PtKdjdZk66pPr4BXOzpjr7/FBp6Eg/Uw/VTvA5zOhw7H4g77al/DdlkH6/joXiqOf5jk/k1f+AwVRpN5k0kPnnCoWQmW4fyJAuvBtqpLr9GQgwzpjcrHRqJdQ29CSajr3E4Zxj26R6fRPS6rCvlDZRrw1AdeT6/Ma8PpGXK6+uOv+X1L40B+vaE6sp6M23+bFZEs4MZJOSMT8b1OtfW7ilqbIh38H2A+6NrS6h/k8Vg7fUhP3XqJvONxDGQA8Txhmb3xByxGWkdMSfRxSD5dEL9+L5pbaQ1bIykZW74vP4+Md174oAYmHW2Fr9GdF3QvOVaucmW6txae1ljSzzMB+0Dt6cvk8nK2hLFf3zgUyAzW9aQmsmE6w5f1Fy0dE9oRDg9wmeihRm5uqGURlBkreKhgTZViKMnHdezPOYJPXGArpCDrYdycZNlCLVyky3TuUPtHLJGLV6YzUxNW6JssggIA7PhBrc0BAtWiieDi+sI4KaSInxetG6mi+HXKAwBUO+hNdJNlF/3MD2LY7yWzj1xYF34M56PZDL/G9al1rpC5x61O3SNlXi/vrJXqtoSbSYDqoOrmEwRnJusZIAdNpQwhAxVx98yWeeeOIiueW6QO+WhJgPdblPhvMVaV+jcXHtNYyW+tH5VW6LdZJPgWRBviLZZohDe0AkYxDw45Z7EHhsq5OAnMkHT4X9PjX2KyZ7SE8UQZxpHTMZ6MV9Xa12hc2vtVY0t8cr6VW0J2WSQgG1CLw4LhoaQAoLg7KRjm5I00eegG97fw/OeG5sC3zNdEpM2rAVwsTG3qMOtjQ1CNxHQwWSOZ/Qk0+Vj6G+5ydAa/jvtKc25Tuem2qsa65qy9d31+I+PsraE8iSLBsHwIQWB1CQ4zt3vBTMRMWaKI4ObCOITiwYl6pJgWgBmunCwpOvUHHwTAX1MBvTuiayLzpzPivQH9BZrXa9zS+1ljS2a+Pqla7yHgQWvi4ZhrMFMZhidMZMZRmfMZIbRle/xD4fhsX1uZgcnAAAAAElFTkSuQmCC" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="75d066eb-ca96-43e1-9c59-71363eecc3ad" TimeoutMS="3000" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
<If sap2010:Annotation.AnnotationText="Is the Student Comment Maintenance dialog open?" Condition="[elementExists = True]" sap:VirtualizedContainerService.HintSize="483.2,700" sap2010:WorkflowViewState.IdRef="If_2">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence sap2010:Annotation.AnnotationText="Yes, the dialog is open" sap:VirtualizedContainerService.HintSize="375.2,489.6" sap2010:WorkflowViewState.IdRef="Sequence_11">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" DelayMS="{x:Null}" sap2010:Annotation.AnnotationText="Click the Cancel button to dismiss the dialog" ClickType="CLICK_SINGLE" DisplayName="Click Image" sap:VirtualizedContainerService.HintSize="333.6,187.2" sap2010:WorkflowViewState.IdRef="ClickImage_1" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition Position="Center">
<ui:CursorPosition.OffsetX>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetX>
<ui:CursorPosition.OffsetY>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetY>
</ui:CursorPosition>
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAADwAAAAOCAYAAABzTn/UAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhL7ZTRDYQgDIZZT9YhbkPcBJfxgTF6tAFsObi7XGJN1D/hgR9s+UrFwM30AF9db8BhNmDMPtyaF47W6sBMHmKeHiUBTLBzyDNUBD8pQasDbx6sQsKhtIHjYpvbbYQHYq1eD0cHdeBSJwg/iWKW/Sy28EUcZWC7/J4O259anQphwW8dnwGgT/HRb+Crrw388YaTug9aBwz9CtiojUED82oDf/uH24IUsH+Au52kDpxE1Re3vL/SsuXZ6z0A7vm1dY2DkqUW8gxgFEGzdqPDkwI45te1EXASwZT9rJDCL9+eBXx13QwY4AWTcxnbkTxypAAAAABJRU5ErkJggg==" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="df7eb0fa-5e08-4099-b70d-c1ff865f1234" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
<ui:WaitImageVanish sap2010:Annotation.AnnotationText="Wait for the dialog to vanish" DisplayName="Wait Image Vanish" sap:VirtualizedContainerService.HintSize="333.6,138.4" sap2010:WorkflowViewState.IdRef="WaitImageVanish_1">
<ui:WaitImageVanish.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAANsAAAAZCAYAAAC4o1v/AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAOnSURBVHhe7Zi7deswDIa1iju3WcG9F9AOrlxmA5+M4DbZIlX2yCq6BChKAAg+9OK9N0HxnWNbAvgD4E8p6d6/vgfDMI7HzGYYjTCzGUYjzGyG0Qgzm2E0wsxmGI0wsxlGI8xshtGIotnu127oOsL1qd63hbfbyyF5a8C1aX1dP9yV+34DftYvQ/+hX3//eg6XhXvA5/y9PaVkzPY59Oe4sffb6/AWvj/6oTuT7yvZ3WxVusb65EZwsZcH+f5TqOhJOFhPt0/1OszpdD74YNxpT/2LpM328Tqcsqec4z82G675Q4eqUmk2NJP6JPKHk5ltPZknm39lSJ3y+uslxAiDomn58Fisa+xdMRt/vaM5/dAvj/Bk4td1XXNeT742CtcR58MNensSLWNerDv8Fte/NAY4tidcV9Sb0QTRrJhmhzCKzxmelOt1rq0dyWqsiHfIfUD7k9bGyf7NFpKkXiviU6hsNmwojYEcIFI2Nron5AhNmddRczJdApYvja+f3jeuTbT6DTJrmRo/rb9PzOE9cUAMzDpaS15junoyb71WabalOrfWntdYEw/zIfvA7el+NFteG6f4DxJ6KkSmixpTMpty3YHFTcVr9/iG+NPEf2ZahKGLGyvTkBldq3p4kM3l4/jJJ/Usj2nQEwfo8jnEeiSXNFuEUqs02zKdO9QuYWuU4pXZTJS0ccpmC4BAMB1tdE1jqPBEE9gAwzoKtLmsGMxL1o10CXCNzDCA5D28Rr6Z4uuI0LM4BrUc3BMH1UU/0/loZsPfqK5krSt07lG7I62xEI/rJ/ZKURun3mxAcYAFsyWEx2bLGWGHjaUMIyKp42+Z7eCeOJiuaW6Qe87DzQa63eaiebO1rtC5ufaSxkJ8bv2iNs4ys43CJ2GyMalNEwTJxo7AQKYBJu6Z2WNj+RzyhGakdODvc4ObmK1JTxLGuPI4ZjbRi+l6stYVOrfWXtRYE59Yv6iNkzYbJBKbEUVS4dAYVogXHp18YnOyZmIOvvHxHpn3Wtkc+B7p0hi1US2Aiw25VR1ubWoUvpmAA8zmaNGTSBfG8N9is5E18DvvKc+5Tuem2osay5qi9d318A+SvDZO5skWjEKRw/JCuVlonLsfhQsxIWaMYwMc8UXMLBqYqktDaAGE+fwBM1/nJpGbCTjGbMDRPdF18ZnLWbH+gN5sret1bqk9r7FGk1w/d032cGbha6RhGGsxsxlGI8xshtEIM5thNMLMZhiNMLMZRhO+hz8ETOBLi7kyXQAAAABJRU5ErkJggg==" />
</ui:WaitImageVanish.Image>
<ui:WaitImageVanish.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="1541b627-11e3-4c56-981c-252ee3f1a30e" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:WaitImageVanish.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:WaitImageVanish>
</Sequence>
</If.Then>
</If>
<ui:InvokeWorkflowFile ContinueOnError="{x:Null}" sap2010:Annotation.AnnotationText="Click the clear button" DisplayName="Invoke Workflow File" sap:VirtualizedContainerService.HintSize="483.2,144.8" sap2010:WorkflowViewState.IdRef="InvokeWorkflowFile_1" UnSafe="False" WorkflowFileName="ClickClearButton.xaml">
<ui:InvokeWorkflowFile.Arguments>
<scg:Dictionary x:TypeArguments="x:String, Argument" />
</ui:InvokeWorkflowFile.Arguments>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:InvokeWorkflowFile>
<ui:ImageFound sap2010:Annotation.AnnotationText="Check to see if a 'save changes' popup is displayed" DisplayName="Image Exists" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="483.2,138.4" sap2010:WorkflowViewState.IdRef="ImageFound_2">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAANIAAAAWCAYAAAC14MLgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAPXSURBVHhe7ZjLces6DIZVgtvwjDdZpgXvvPU2FbgHV+AevE0jmUkrKUGHAEkJAEFJpMjJGQeLbyaWiDd+6tw7fHz9jIZh7MOEZBgNMCEZRgNMSIbRABOSYTSgWEjnyzAOA+HyVM/t4Xp76+J3Cxib1jdcx7Nyzgi7EObk9+JtfP/Uz358Pcdj4b54n337XxJjaS8LhPQ9vp/SRpxv9/Eafz+u43AivytpLqRNeYX6ZFOd7fFBfr8Ke2cF9mRG8YI93L75uQDM9HDqfEE22r8lsA6lxu1C+ryPh8Ubx9GokN8QEsbsPIT/il2zgkuH7wIICYWi3u7+knoFIfkva1pjwRfJf5pzt3O8kSawYWAjxIeC5IkwW9eIsyIkXPTJP/Xph3R8xC8Kf6/nNfv1LNdG4Xmk/nChbk+SS/CLdcdnaf2lNkDznsAiTs/F3ChwbqHupI9hwZO5svocQgTeZ7z9K2tqGCMCfZdfpaL/RoqDy32+0xthXUjYAGoTh0kajnGTM9FHLFo0VZ4XDWQwf3l8/fRciE1y9QOdc5mWfYrfxqZ5T3AuZFaP+/y3AGLLHQD/8CzJS75jNVxJDL0vc5yKmhzNYwAQh/gAiv9nA1W4bGZayJqQlPcOTH5KVDvjC/Y3n/+b5SLEqjWYAe9XhaTnql4MrMlgJ25pkU+5TYeeyPcLQL7yqwPPfDyRG/ErhZSg9EUu+a45A3tjxGciTrmQIpAQCIo2JilEGThNTEvSwRoe4yjQpWGDRb8k7lqDMUaaByN7htfIB5O+R0Q+xTaYS+ueeJvZRw44J3Jz0Bro33SWmpDwGa0h25f6OTeNgcB8+C7UCwlYLWRFSLgQW4S0tOT1DZ5QmyXI5vFbQurUEzwHC5f3D/lKsbEaphlz0XEhQY18qZf7UlNThxjxGYuzV0gh0SmwWoiyEHFIWpIOKG5qeObMTAMhBR/ytmTk8sDn89LxwQAronAU23TvibfnOc2k+WYW8sJjMCGJvk3vs32pqKlHDADiiF3ZLiRwKIwxKZooBGCJ+8SSW0gsHiseffClxjPS7yXabGywaGhKyI3mAjjb6FvNw8WmS8UHA3QQkqN5T0idqj0FbMUuJDWgf/4sFRLJB3/z/nOfFTX1iOGAOvi8ir5IUQQUuZw+ES4EaufOY2JiAaJNsGMND/jFmSkrXstLQ+QCCGH5y2N+LxuaLFQnIQFNexKXLPGlkean18D3Q86V9RJqW+xL3Zzbx0jrAnb+0874s8BCLl5KrwkIU7tkTEhGNfhF/ENikl9UignJMBpgQjKMBpiQDKMBJiTD2M3P+A/Gl7U51HQgVgAAAABJRU5ErkJggg==" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="b6ed5f18-4b29-4825-a19d-9cf39ff2e178" TimeoutMS="3000" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
<If sap2010:Annotation.AnnotationText="Is the 'save changes popup visible?" Condition="[elementExists = True]" sap:VirtualizedContainerService.HintSize="483.2,668.8" sap2010:WorkflowViewState.IdRef="If_3">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence sap2010:Annotation.AnnotationText="Yes, the pop up is open" sap:VirtualizedContainerService.HintSize="375.2,458.4" sap2010:WorkflowViewState.IdRef="Sequence_12">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" DelayMS="{x:Null}" sap2010:Annotation.AnnotationText="Dismiss the popup message" ClickType="CLICK_SINGLE" DisplayName="Click Image" sap:VirtualizedContainerService.HintSize="333.6,187.2" sap2010:WorkflowViewState.IdRef="ClickImage_2" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition Position="Center">
<ui:CursorPosition.OffsetX>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetX>
<ui:CursorPosition.OffsetY>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetY>
</ui:CursorPosition>
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAE4AAAASCAYAAAD15uiRAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADFSURBVFhH7dXLDYMwDIBhj9SMQ1aJ2CTKJmGUMIrrRCk1UFrVFwfJh18CCy6f8oCyFrT+z+CEGZwwgxNmcMKU4SJ6AIQpfpg7DAufjdUAcA7dA9Cn89zgLutAKRBewHycG9xVb6A4Abo5n+btfSHYuqV7+9Wp0zBw358ZVkNkqEoNBEcl3y8KNm9QHiP7r65O7VU3FtyaMbSLwuB+dISjtvPsNa/fHLfqHlKj8eCoPDsGR22YHFQ3Zbj7ZnDCDE6YwYkq+ATE01C19MjXiwAAAABJRU5ErkJggg==" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="0b2faecf-e663-4808-b265-460fd05b20c0" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
<ui:WaitImageVanish DisplayName="Wait Image Vanish" sap:VirtualizedContainerService.HintSize="333.6,107.2" sap2010:WorkflowViewState.IdRef="WaitImageVanish_2">
<ui:WaitImageVanish.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAANMAAAAZCAYAAACrdBsLAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAPpSURBVHhe7ZjLceMwDIZVgtvwjC85pgXffPU1FbgHV+AefE0jmUkrKUFLgKQIgKCe0GTHweGbsSQS75/Mbvfx9dM7jrMdF5PjGOFichwjXEyOY4SLyXGMcDE5jhEuJscxwsXkOEYsEtP50vVdR7g81XVbuN7edrE7B/RN8+uu/VlZ56RZSH2Kc/HWv3/qaz++nv1x4bxEm/vWf4mPOXM5U0zf/fupLsb5du+v+flx7bsTeV6JuZhmxZXyk4UNe48P8vwqbO0V7Cc9yofs4fbN1yWgp4fTzoek0fyNgXk0cgTmienz3h9GT56AUTK/ISb0uXMj/is29QoOHj4LICYUi3rKx4PqFcQUb9j2TTbzZorXdOuUzifTABYN9ggBoih5MGxvKMZZERMO+2Cf2oyNOj7yzcK/63EVu5Hx3Cg8jtoeDtXtSWJJdjHv/K7Of+kewLwmMIzDe9E3CqwbybuqYxryqq8sv4AQQrSZb4GVORn6yEDdW7fT7H8z5eY1r7nqZJgWExaB7skNJUVHv9WabCMnLgor14siMpi9NjF/ui75JrHGppZYhoEf/NvsMa8J9oX06nEvvwXgW84A2Id3VVzyG8vhSnzodSl+VuQUMPcBgB9ig7LoPyCo0mVB62SmxKR8D2ACQ7Damph0PAHjbxaLEKxWZAZ8nxSTHqt6OLBCwz5xWot4lu/ZoSby+wgQr7x94F30J2IjdqWYKpS6yEHf1Gdgq4/8ruFnmZgyEBSIihanSkZpOg1OCzTAip79KNDBYc1Fu8TvVJHRRx0Ho7mG58ibU39HRDyL92As1jWJe4qNFrBOxBagOdDftJeamPAdzaFZl/V9NvWBQH/0eVknJmAymQkx4VDMEdPYoK8v8oBaMEEzjt8S0041wXUwdG37EK8UHMth6DEXHhcT5MgHe7wua3LawUd+x/wU1ospBTs4V5NRhiI3Sgs0AAkORW+sKRiIKdmQpyajFQe+L4PHmwNMCCOweM/uNYn7eUyFOt7GUF64DyYmUbfhe7MuK3LawwcAfhqzMk9MYFQYwMBosOCEBR+Dq04jMXysAGiDDzaukXYvec/MIoui1qTYaCxA2Jttq3EE33SweHOAHcQUMK8JyVPdT4G9YhaqHNA+f1eLicSDz7z+3OaKnPbwEYA8eL8KM2+mLASKHNAYDBcD3RfWY3BiCPKetI8VPRGHp7CsAFpcGiIWQIgrHiDluyxqNVQ7iQkwrUketMqWRh2fngOfD9lXVkvIbbQu6/ps76POi7LhzzznzwJDOXowvSYgzrGDxsXkrAJvxj8kKHmzariYHMcIF5PjGOFichwjXEyOY8JP/w9aUqpVW16MDAAAAABJRU5ErkJggg==" />
</ui:WaitImageVanish.Image>
<ui:WaitImageVanish.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="50392783-b0cd-4951-aaec-7d2fa08f2665" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:WaitImageVanish.Target>
</ui:WaitImageVanish>
</Sequence>
</If.Then>
</If>
<ui:ImageFound sap2010:Annotation.AnnotationText="Check to see if an error message exists" DisplayName="Image Exists" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="483.2,138.4" sap2010:WorkflowViewState.IdRef="ImageFound_4">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAFcAAAATCAYAAADlAZEWAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAEwSURBVFhH7ZMBasMwDEV7vfU6Y5cZZTfprtNjuPpZfvhVZc8tMUmpHghkSTb4xTmUZBgpdyApt8Hp+/RUkJRbQSU9Cvem3AopdyAqF3lLtu8zT7kVvCwvkEQ95im3ghdZk+hrgOs+ub82+FXKp00fEJZffubc4jyPaQ0zE9j7UcpRajdz1rv8lXeFFwZUpoaHNbteBxBkk5QIyUcTBM6Qbn1KpCjUpxm3lx+KQDTP2hORNKBSWzOgX64IgVx9rZCzyCTcE0hfXi1Dzt4LLXEaEazb1TpYWe4eX6onEqdSNTysrSa3KtHVp7Xb/wovN5IZ1QDX68md87tf3cs1buakp+dqvgU9EkHUY25XSCK8LF17fJ95l9zllW0UW9CS+R8PyX1HUu5gIOmZICl3GKVcAbv8h4LeOvi1AAAAAElFTkSuQmCC" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="c2153dfe-5ab0-4eec-97b7-1527f50bd1d8" TimeoutMS="3000" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
<If sap2010:Annotation.AnnotationText="Is an error message being displayed?" Condition="[elementExists = True]" sap:VirtualizedContainerService.HintSize="483.2,397.6" sap2010:WorkflowViewState.IdRef="If_4">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" DelayMS="{x:Null}" sap2010:Annotation.AnnotationText="Yes. Click the close message button" ClickType="CLICK_SINGLE" DisplayName="Click Image" sap:VirtualizedContainerService.HintSize="333.6,187.2" sap2010:WorkflowViewState.IdRef="ClickImage_3" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition Position="Center">
<ui:CursorPosition.OffsetX>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetX>
<ui:CursorPosition.OffsetY>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetY>
</ui:CursorPosition>
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAABQAAAATCAYAAACQjC21AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAB1SURBVDhPvZFbDoAwCAS9/xFM74rhY5MVy6NVmYSEsjJGe8jH/C8c59gqcBNysAp2+4TaRy+wOfpUyDMwy9CHn+wt2pmCc/oPWcBlwax0KSyKnlH6hSzismDWdyneojLL0KdCD5ujL11KhR6hosFOgYfwHSIXj9NsOGp0CfEAAAAASUVORK5CYII=" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="e5e7df87-5376-450f-a71f-53b3a57dd5f1" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
</If.Then>
</If>
<ui:ImageFound sap2010:Annotation.AnnotationText="Check to see if the expected window heading and empty field are available. An accuracy value of 0.9 is required for a more confident match." DisplayName="Image Exists" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="483.2,163.2" sap2010:WorkflowViewState.IdRef="ImageFound_3">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.9" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAARYAAABBCAYAAAAUsYu0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAATLSURBVHhe7djBjRtHEIXhDcc6OgwrA+tmKAJDKQiKwEdDN6WzykAKwUcfabeMZzyUqrp7hk1qOfN/QMHsqhpysTP7YPHpAgCLESwAliNYACxHsABYjmABsBzBAmA5ggXAcgQLgOW6wfL+w6e07uXenzfLfxcv9WcEfqQyWLI/Hq97uOdnzfLfQVYAimDp/aFks2r3Wrd632j2c7SX7fZmZ8bv5Jy6wVKJ89H+Xrd632j2c0Z7s+9zJvxOzmlXsDjt+jX+Oqpm6vvcXzvfG+34a+9Jb+ZG8x5//+p9vF/tVf3G+9Ve1Xe+U+163/fUk2oW+z7DMQz/KTS66dmuv46ymXpVuWyuctncS6p+NJpX/L1juWyuquYum6uqeZTtqFw295KsH3teOI7yy9tm9ubH2Z7duJ/1s16T9bNek/WzvWhmJ9I18bqsn/WaUV9Ge1VfRnvez3pN1h+dm6yHx9YNFtGN93Kxl+3Io+3KzE7UuybOqt3Z/uyexH6116zc1dl7OJ6pYHHZgzE6uxW7vZJ4dlt2ZWYn6l0TZ9XubH92T2Jf515JPLuZXfWyGY5hc7A08YEYnd2K3V5JPLstuzKzE/WuibNqd7Y/uyexr3OvJJ7dnt3eDh5T98vbSpyPzu5Wu1FvN856u260F+e9/dnd2f7snsR+tZfp7cZZb1dmdvBYusGS3exsVp2912T9rNdk/awn1W5my67TXrabzbJek/WzvWa2P7snsa/zlt3MaDeem6yHx1b+U0g3uyqX9b2XlcvmXi6bq1zWkzjTudp3vptVlO2oXNZrZvuze5L11cvKZT2JM53V83MsHEf3O5bs5rfKZDO/RjN/7XxPc3/tfG+0k8lmvf1Iu149M/vX9mf3ZNT3iqp+k81iT2cvHMuuL28BoIdgAbAcwQJgOYIFwHIEC4DlCBYAyxEsAJYjWAAsR7AAWI5gAbAcwQJgOYIFwHIEC4DlCJaDef/hD4q6W1UIloPp3Wygeff7uyVFsJwIwYKRFgpfvn65qgiWk/Gb/fTE7cX3CBZsRrBgJAbL619ef1c+z4pgORmCBSMeLC1E3n58vjz/dfm/2rk9Ox4ksW4SLO1DVdda/fD33i+bqbf65/hRCBaMKFg8VGQ2XJYHS3xY/bznQd778FfX9d5vzzWPhmDBiAeLh0qjYPn0+e9vz08MFNXNg8XteZD3PvzVdVt/PvX2/hwvDcGCkSpYFCovMlg0j3t+1p5Kqp7+G/t+ltjTnu/HnSMhWDASgyVWC5W7B0ujP9L44Pq5mu3p+6zal2xXqmuOhGDBiAdL/OJWoXL371ii6g85PtQ69/qx1HdVX7xfXXtkBAtGFCytXv306luIKFA8VP787b+/Qw8U1UMFS+aa/eraIyNYMOLB0qo9J7GeP/78b70tw2V5sLQPcX7uvdbZ+82qvni/uvbICBaMxGDJ6s2vb7rhcpP/Y2kfooq85ztZ3+dN1XO9WZPte6l3VAQLRmaCpVUvXG4SLHi5CBaMzAZLK4ULwXJyvZsNNFuCpVULFA+VVgTLyRAsGNkaLFkRLCdDsGCEYMFmBAtGWiisKILlRNrNpqh7VYVgAbAcwQJgOYIFwHIEC4DlCBYAyxEsAJYjWAAsR7AAWI5gAbDY5fIPk3CLlrxgxaEAAAAASUVORK5CYII=" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="6a297011-bc69-49b4-a29f-6d2f3b7caaa9" TimeoutMS="[Cint(defaultDelayValue * 0.5)]" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
<ui:CheckTrue sap2010:Annotation.AnnotationText="Check to make sure the standard heading was found" DisplayName="Check True" ErrorMessage="Student Comments window was not able to be reset as expected" Expression="[elementExists]" sap:VirtualizedContainerService.HintSize="483.2,128.8" sap2010:WorkflowViewState.IdRef="CheckTrue_1">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:CheckTrue>
</Sequence>
</ActivityAction>
</ui:BrowserScope.Body>
</ui:BrowserScope>
</TryCatch.Try>
<TryCatch.Catches>
<Catch x:TypeArguments="s:Exception" sap:VirtualizedContainerService.HintSize="561.6,22.4" sap2010:WorkflowViewState.IdRef="Catch`1_2">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ActivityAction x:TypeArguments="s:Exception">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="s:Exception" Name="exception" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Log the underlying exception message and throw a BusinessRuleException" sap:VirtualizedContainerService.HintSize="375.2,350.4" sap2010:WorkflowViewState.IdRef="Sequence_9">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="333.6,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_5" Level="Error" Message="[exception]" />
<f:ThrowBusinessRuleException sap:VirtualizedContainerService.HintSize="333.6,80.8" sap2010:WorkflowViewState.IdRef="ThrowBusinessRuleException_2" Message="[String.Format("Unable to reset the '{0}' window", WindowName)]" TakeScreenshot="True" />
</Sequence>
</ActivityAction>
</Catch>
</TryCatch.Catches>
</TryCatch>
<TryCatch x:Key="student study package" sap2010:Annotation.AnnotationText="Try to reset the Student Study Package window" sap:VirtualizedContainerService.HintSize="595.2,6417.6" sap2010:WorkflowViewState.IdRef="TryCatch_3">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<TryCatch.Try>
<ui:BrowserScope SearchScope="{x:Null}" Selector="{x:Null}" TimeoutMS="{x:Null}" UiBrowser="{x:Null}" Browser="[ActiveBrowser]" BrowserType="IE" DisplayName="Attach Browser" sap:VirtualizedContainerService.HintSize="558.4,6155.2" sap2010:WorkflowViewState.IdRef="BrowserScope_4" InformativeScreenshot="d1462725ad6b2109c9772d80cddc7861">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="The clear button does not behave as expected based on other windows. Use it to clear any error messages and then manually clear the fields" DisplayName="Do" sap:VirtualizedContainerService.HintSize="524.8,6008" sap2010:WorkflowViewState.IdRef="Sequence_13">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:ImageFound sap2010:Annotation.AnnotationText="Check to see if the warnings list dialog is displayed" DisplayName="Image Exists" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="483.2,138.4" sap2010:WorkflowViewState.IdRef="ImageFound_6">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAIEAAAAbCAYAAABbXex1AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAALDSURBVGhD7Zi9auNAEID3Ba/xWwTjKq8gXBhzlbgquDAoRcDNgVIElMbgxrAuAmoCcuHCxRUuUricm9mdlVb2SieTO4hOY/hgd/60mZldraJAfoP/qfP5DMKwUecPHPyRAlaTCEbfdX3+LYL5mm3WK5zHsHp3Pp/gPYN7P/Y/Q8Mcn3P/VFzruq4B/+6gf49Qp18n6EI2o6KvIKP5WwZjTBA1wfixuNb3BtsE7m+4nc/6fw3U8XCELuhFbHZ6snPjBKIpFn6Sgj7kkNDJMN0Y25Tk3CRWjzGeEzMfT8g3gmiRmkaKplZudIvcPm/HumdvHLKrPStGG7uu1Oh4Tezj1lZnA9FFvBJ/DcFYXeL3A1XsC+jE1iWlsIm/SyHlZkj3LpkaClNsktV9rJxtPB0lj+a2mAG/NjuOaez2Gh7uGnRmHMPDlux8vHXX5Ehg7dexWvx7ROeToNo1abV73G5xu9rsmsrW7BAnLxPJNrWdVp0uZheHToKAXc2nIYZbQ3C3dz0JGmO1+PeIG5rAP/7sa4GSQO9EK0sgQzu9pELgheoF9Zw8M36xTWDGFM/XlX42Rk3XYlfzCcyJzHs1jZeXxbLrv5YjF88lrmO1+PcIdTzioCM5F9gkmmX2QohMMsjLOev9wvtj0vHl0s1tbPbzdW12tZiuSX0dNusb6fgCR8UiXUmTHPGf2xirxb9HdP46MHDSRzNdylxjjJd8Q/a+HEZ4CaSx0ZUF41hlkv04WMBLXZsdUjYhFmk+a9LRWrBJWV5hi1jaMKHnhmMV1eno5aRvqNMJB33llf43gYV6tfP8kZoAP1Mv7YRWbjsJvhzeTmRMQwRthSa6fyIK/y1KbzUIw6bnrwPhb6DiHzEIw0YlywyEYaOOhxMIw0alPzcgDBu1WecgDBuldwUIw0aaQJAmEKQJBESaQJAmEKQJhF0BvwEuaSckzGC9LwAAAABJRU5ErkJggg==" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="f4d38841-f549-4035-a18e-24982feb6488" TimeoutMS="3000" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
<If sap2010:Annotation.AnnotationText="If the warnings list is displayed, try to cancel it." Condition="[elementExists = True]" sap:VirtualizedContainerService.HintSize="483.2,366.4" sap2010:WorkflowViewState.IdRef="If_5">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" DelayMS="{x:Null}" ClickType="CLICK_SINGLE" DisplayName="Click Image" sap:VirtualizedContainerService.HintSize="333.6,156" sap2010:WorkflowViewState.IdRef="ClickImage_9" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition Position="Center">
<ui:CursorPosition.OffsetX>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetX>
<ui:CursorPosition.OffsetY>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetY>
</ui:CursorPosition>
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAD4AAAAMCAYAAAA6cw7iAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADpSURBVEhL7ZRRDoMgDIZ7PblO422IN8HL+MAxOtoIFoLbgpnNsv0JD/5gy1coQD+qP/iIwgwEcAxc94lPa0WCyVPcP0c0DC7Qc9i/WJH8dBO8GfjmyV1MfElW4HFxzWk34o2pFiiblA0jYboZlZ8kMfN6FbvyqzhG4G55Py23hbSAFMSR3zq+AmFf4rPfFKH4VuBPTzyp+/B1ANkvoI3aGDI4rxX4qx5vC5MBR8C7N8sMPElOozr141WvW0G99ifgPb9caUDKWUpBLcFZAq+uoUCIAqHyy9wZeJJA5fWqoJWf/7UG/14RPQDqeZs9sp092gAAAABJRU5ErkJggg==" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="db5600e3-268a-49cd-85bc-d98173c99002" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
</ui:ClickImage>
</If.Then>
</If>
<ui:CommentOut DisplayName="Comment Out" sap:VirtualizedContainerService.HintSize="483.2,371.2" sap2010:WorkflowViewState.IdRef="CommentOut_14">
<ui:CommentOut.Body>
<Sequence DisplayName="Ignored Activities" sap:VirtualizedContainerService.HintSize="375.2,292.8" sap2010:WorkflowViewState.IdRef="Sequence_35">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" sap2010:Annotation.AnnotationText="Click to the right of the Student Id label to enter into the field" ClickType="CLICK_SINGLE" DelayMS="[CInt(defaultDelayValue * 0.25)]" DisplayName="Click" sap:VirtualizedContainerService.HintSize="333.6,200" sap2010:WorkflowViewState.IdRef="ClickImage_13" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="26" OffsetY="15" Position="TopRight" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAHAAAAAZCAYAAADpG6rZAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAD5SURBVGhD7ZHhqkMhDIN9/5c+F3/kEsS40Tq2QD6QzbQ91GQ8wZoEaE4CNCcBmpMAzUmA5iRAcxKgOQnQnHaAY4z/0+XGN5jT93Y1aLf3+CStTdeH8r1iQtU4NXf6XmXmF2ltWzHoRNW8Shi7GrTqHt+gtekrg5QhfEcfDlAafled72DV0Mf9a48b7e1XQwDfVa2ic031g10vUDNuXH2FMkyZd9LXA51ROmBdzbpz9RXKMGXeuzro9KtZd1qvOJly+o8765NbOmBdzbrTfsU0AmeFNe7Z6VyfKI051Sa7fj7QnPHePiRAdxKgOQnQnARoTgI0JwFa8zx/k5oJRmYU2jsAAAAASUVORK5CYII=" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="d39e04be-10f8-4b94-9f60-3c5db72468dd" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
</Sequence>
</ui:CommentOut.Body>
</ui:CommentOut>
<ui:InvokeWorkflowFile ContinueOnError="{x:Null}" DisplayName="Invoke Workflow File" sap:VirtualizedContainerService.HintSize="483.2,113.6" sap2010:WorkflowViewState.IdRef="InvokeWorkflowFile_2" UnSafe="False" WorkflowFileName="ClickClearButton.xaml">
<ui:InvokeWorkflowFile.Arguments>
<scg:Dictionary x:TypeArguments="x:String, Argument" />
</ui:InvokeWorkflowFile.Arguments>
</ui:InvokeWorkflowFile>
<ui:ImageFound Found="{x:Null}" sap2010:Annotation.AnnotationText="Check for the "Do you want to save" message box" DisplayName="Image Exists" sap:VirtualizedContainerService.HintSize="483.2,138.4" sap2010:WorkflowViewState.IdRef="ImageFound_7">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAPcAAAAaCAYAAABrVsoPAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAARfSURBVHhe7ZnBUetADIZdAm0wkwtHWsgt11xfBemBCuiBK40wQyuU4GdpV7ak1Xpt74YkRodv3ku8lvRL+p0A3b+vn95xnP3h5nacneLmdpyd4uZ2nJ3i5nacneLmdpyd4uZ2nJ1Sbe7jqeu7jnH6MM/VcL68XCVuiXvXltTXvfSvn/bZdXz3r4euf363rt0W1Bz7FfTPaf7on1fOLcQ890fjWivW5KjZjwpzhwXQiY+Xt/5Mr9/PfXdgrzfS3NzFuh5DGyzJ0+V7fI2xmhj8Ts0NPWe9CiaRPeBAP54OjXdH02gP5kAdGY1zbDf351v/VFqkRzX3g2jT5iZTblkEyT2aG2qSM0H9YF7zUzD2YgfmDt9A1n+bqPjkDl95cgtAT9URbDDco0yDRpKFi3uHxh0NA4RPKTrHY9Jihn/1dbuuKW7gNtrwmqUzszxwftbcmF/m03FkH0kz9ZDOUS+jlgVx53QS+RkagInU/UH/h6o1Ek2X5C3ULnu6cZca5iCgV2sf2lU/c9NwskmTp1rZANgwfg/EAMFsQMnC4xmKQU1SQ9DnVcM1N9GWxKTB02uJXBJAnj9fzqye2BfdR/7wGep9Ncyt6y7FrZ9hCpzXsyD9SSx9TeQt1z7liddX7lLzHADkYTGWUP0LNf6U0s1PhZcMYFwfQLGjMOtMaFBYxvB/UYsymTUQk1tr03Ur5JLEWDPnZc2QK/fgmPppLpomiVs7wxS4X1+b9Of7ps2doOY4xYTXjXapNge9V8qjqDc3AQLACLyRiXBjqFyIJWpADIjyGHBzi0XAuCzvkoFwfkvbAB98aTHhrOiBoQljWGdQU1pPIC5c9ufZmbhNZqiBevTDQPYq1zerh9naByzjbdmlpjkQ2K/cvGzamRsoCi8YILNw6WLMibyCuYHf0AaMcQ0dCrkkGqhHLpWoOVNPIOQO5laaNsZdN8MU0Kp7IfSPvYbap5plfwu1D9Sb+wo56D2Rp0xbc0dhY6GmcFU0H7QlagCaMQ4oc2Ziy0CW8AvakBjnHc7PG0AuiQLzyftx0anm2T5OPcR7+LmNcdfNMMXSKt+LNZ/kXIS5S7UPmDHX7NI1cgCQR+xJme3mhgJUsrAITBhfbiQImYoMhuFncAl4szCGNACe0XFPdM/CgagBCG6ojc4t+ROOXBKF1oyvZf6kj8MZ6xdqQnsxbuxD1QwNIIbVJ64/5uHvYe1038KerDa36mHzHAOgIzvrDBWf3LS8HD4sIA4aro2D4fcN51GIGjLdE+8TA4qE5ZhY1yyrLs5ttVnDtUiWWxFMGXPBcsEictMNyD5SzrSHdA7eK8ddpjM/QwvorexJqh/OyDnpvKXaZcy0D0t2qX2OVNcSGn8td5pgmPDRSY24AeiLfhD+AeBhsaV3bu67IzzJq41wT4ApN3zyWOCn/R8yuPWNZylu7jsCF5d9vXtURh0jbYztrMPN7Tg7xc3tODvFze04O8XN7Tg7xc3tOLvkp/8P6ZvWL3XXLroAAAAASUVORK5CYII=" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="35d532f6-8281-4605-a3bc-1bf04ec23679" TimeoutMS="3000" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
<If sap2010:Annotation.AnnotationText="Was the message box seen?" Condition="[elementExists = True]" sap:VirtualizedContainerService.HintSize="483.2,397.6" sap2010:WorkflowViewState.IdRef="If_6">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" DelayMS="{x:Null}" sap2010:Annotation.AnnotationText="Click the 'No' button to dismiss the message box" ClickType="CLICK_SINGLE" DisplayName="Click Image" sap:VirtualizedContainerService.HintSize="333.6,187.2" sap2010:WorkflowViewState.IdRef="ClickImage_10" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition Position="Center">
<ui:CursorPosition.OffsetX>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetX>
<ui:CursorPosition.OffsetY>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetY>
</ui:CursorPosition>
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAFEAAAARCAYAAACl10BaAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADESURBVFhH7dXtDYQgDIDhjiTjyCrETQib4Cg4Sq8QTiteLl4koZf0x5too3+e8AFpS6g9SxE7pIgdUsQOCUL0aAEQZv9hbtCtfCYrYYgGzQRow3WuiLeqWMERpMPYzhXxTgeWnwHNEi/z8r4Sct72tfOqHZNIxO/PDK6AMuBBCUWkgq2XDJsXNIue/ZdX7ejVKBdxi+jKJaOIP9QiUvv5957nb9rtfEYdkWxEKi6GIVI7LMcdmyDE/00RO6SIHVLExyV8Ae5g72iCZjvfAAAAAElFTkSuQmCC" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="6d2ece1d-e199-44b1-8960-4e979a6806a4" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
</If.Then>
</If>
<ui:Comment sap:VirtualizedContainerService.HintSize="483.2,75.2" sap2010:WorkflowViewState.IdRef="Comment_2" Text="// No need to run the below steps as the bot clears old data before entering new data" />
<ui:CommentOut DisplayName="Comment Out" sap:VirtualizedContainerService.HintSize="483.2,371.2" sap2010:WorkflowViewState.IdRef="CommentOut_4">
<ui:CommentOut.Body>
<Sequence DisplayName="Ignored Activities" sap:VirtualizedContainerService.HintSize="375.2,292.8" sap2010:WorkflowViewState.IdRef="Sequence_25">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" sap2010:Annotation.AnnotationText="Click to the right of the Student Id label to enter into the field" ClickType="CLICK_SINGLE" DelayMS="[CInt(defaultDelayValue * 0.25)]" DisplayName="Click" sap:VirtualizedContainerService.HintSize="333.6,200" sap2010:WorkflowViewState.IdRef="ClickImage_4" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="26" OffsetY="15" Position="TopRight" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAHAAAAAZCAYAAADpG6rZAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAD5SURBVGhD7ZHhqkMhDIN9/5c+F3/kEsS40Tq2QD6QzbQ91GQ8wZoEaE4CNCcBmpMAzUmA5iRAcxKgOQnQnHaAY4z/0+XGN5jT93Y1aLf3+CStTdeH8r1iQtU4NXf6XmXmF2ltWzHoRNW8Shi7GrTqHt+gtekrg5QhfEcfDlAafled72DV0Mf9a48b7e1XQwDfVa2ic031g10vUDNuXH2FMkyZd9LXA51ROmBdzbpz9RXKMGXeuzro9KtZd1qvOJly+o8765NbOmBdzbrTfsU0AmeFNe7Z6VyfKI051Sa7fj7QnPHePiRAdxKgOQnQnARoTgI0JwFa8zx/k5oJRmYU2jsAAAAASUVORK5CYII=" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="d39e04be-10f8-4b94-9f60-3c5db72468dd" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
</Sequence>
</ui:CommentOut.Body>
</ui:CommentOut>
<ui:CommentOut DisplayName="Comment Out" sap:VirtualizedContainerService.HintSize="483.2,337.6" sap2010:WorkflowViewState.IdRef="CommentOut_5">
<ui:CommentOut.Body>
<Sequence DisplayName="Ignored Activities" sap:VirtualizedContainerService.HintSize="375.2,259.2" sap2010:WorkflowViewState.IdRef="Sequence_26">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" AlterIfDisabled="True" sap2010:Annotation.AnnotationText="Type the provided Student ID into the Student Id field" ClickBeforeTyping="False" DisplayName="Type" EmptyField="True" sap:VirtualizedContainerService.HintSize="333.6,166.4" sap2010:WorkflowViewState.IdRef="TypeInto_1" SendWindowMessages="False" SimulateType="False">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Id="6c275ac3-30c8-4af1-8e5c-20da52b9af20" InformativeScreenshot="2d81563dfd36021f4631700816780dbc" Selector="<webctrl id='JWTS_myCanvas' tag='CANVAS' />" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:TypeInto.Target>
<ui:TypeInto.Text>
<InArgument x:TypeArguments="x:String">
<Literal x:TypeArguments="x:String" Value="" />
</InArgument>
</ui:TypeInto.Text>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:TypeInto>
</Sequence>
</ui:CommentOut.Body>
</ui:CommentOut>
<ui:CommentOut DisplayName="Comment Out" sap:VirtualizedContainerService.HintSize="483.2,435.2" sap2010:WorkflowViewState.IdRef="CommentOut_6">
<ui:CommentOut.Body>
<Sequence DisplayName="Ignored Activities" sap:VirtualizedContainerService.HintSize="375.2,356.8" sap2010:WorkflowViewState.IdRef="Sequence_27">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" sap2010:Annotation.AnnotationText="Click to the right of the Study Package Code label to enter into the field.

This also validates the student id. A DelayAfter is set to allow an potential error message to stop flashing before we check for it. " ClickType="CLICK_SINGLE" DelayMS="[CInt(defaultDelayValue * 0.4)]" DisplayName="Click" sap:VirtualizedContainerService.HintSize="333.6,264" sap2010:WorkflowViewState.IdRef="ClickImage_5" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="26" OffsetY="15" Position="TopRight" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAHEAAAASCAYAAABsHjEkAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFhSURBVGhD7ZLhqoUwDIN9/5c+l/zIJdamdtMDR9kHgzVNs4Jun8XjWR/xBayP+ALWR3wBh4+4bdv/uUo3Q9/kmeXK7AxX9x6ZoTfO7KpDU+qRx0h3JvPNvAdm52a4Y+87/DulChx9DHRn0sUm3gOzczPc8dZIBr1xZldVgejZEKnp46FG9E7ONNx5lEx3d5D5gerayzTF6cTNq649p51xcGRBoApm3dGjB0CLx8Fe9ES9ygDdHJLlZRoZzXV6h9KpQe4OWHf06AGZpqCvh1qGeiLsqSd6VY8nkmkk9lhXejxdSqcGuTtg3dGjB2Qa6WQqrt/NcXpG5enmOn2E3aR7AFR31qoD54s4HbjMju7uIPODM12pNDc/qnc4ODHME1FNPZmufaD3SNUDmqdepynOP6o71BN9HV17Tjvj3HETnWV+gafsqXx94/hn/Rrc79f3rHjm1osd6yO+gPURH8/n8wcKI5rvXyF1vwAAAABJRU5ErkJggg==" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="d4139a08-5c8d-4dc7-8e5a-14b9fd50c387" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
</Sequence>
</ui:CommentOut.Body>
</ui:CommentOut>
<ui:CommentOut DisplayName="Comment Out" sap:VirtualizedContainerService.HintSize="483.2,350.4" sap2010:WorkflowViewState.IdRef="CommentOut_7">
<ui:CommentOut.Body>
<Sequence DisplayName="Ignored Activities" sap:VirtualizedContainerService.HintSize="375.2,272" sap2010:WorkflowViewState.IdRef="Sequence_28">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" AlterIfDisabled="True" sap2010:Annotation.AnnotationText="Type the provided Study Package into the Study Package Code field" ClickBeforeTyping="False" DisplayName="Type" EmptyField="True" sap:VirtualizedContainerService.HintSize="333.6,179.2" sap2010:WorkflowViewState.IdRef="TypeInto_2" SendWindowMessages="False" SimulateType="False">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Id="21306fd1-c359-4522-88e4-36e3933c92ed" InformativeScreenshot="cb81789cc4bd9ef59b03f2ab3f411af7" Selector="<webctrl id='JWTS_myCanvas' tag='CANVAS' />" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:TypeInto.Target>
<ui:TypeInto.Text>
<InArgument x:TypeArguments="x:String">
<Literal x:TypeArguments="x:String" Value="" />
</InArgument>
</ui:TypeInto.Text>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:TypeInto>
</Sequence>
</ui:CommentOut.Body>
</ui:CommentOut>
<ui:CommentOut DisplayName="Comment Out" sap:VirtualizedContainerService.HintSize="483.2,435.2" sap2010:WorkflowViewState.IdRef="CommentOut_8">
<ui:CommentOut.Body>
<Sequence DisplayName="Ignored Activities" sap:VirtualizedContainerService.HintSize="375.2,356.8" sap2010:WorkflowViewState.IdRef="Sequence_29">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" sap2010:Annotation.AnnotationText="Click to the right of the Study Package Ver label to enter into the field.

This also validates the study package code. A DelayAfter is set to allow an potential error message to stop flashing before we check for it. " ClickType="CLICK_SINGLE" DelayMS="[CInt(defaultDelayValue * 0.25)]" DisplayName="Click" sap:VirtualizedContainerService.HintSize="333.6,264" sap2010:WorkflowViewState.IdRef="ClickImage_6" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="13" OffsetY="15" Position="TopRight" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.7" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAB0AAAAVCAYAAAC6wOViAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAABxSURBVEhL7Y7BCgAhCET7/592mcOA2NhGJF18IKTlvIY9oKWltLSUSTqG/kc2/4N7fr9cCuKuTJoeXRD6jCMpehbxvZ8r5G1ciuGeXZEnfZmFoY/F+S5HUsUVKVBB2SdKpQBzFsnOivVtES0t5YHU7AMICvF/v+jmyAAAAABJRU5ErkJggg==" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="f1aa9f21-2f5c-44bd-af39-fa1c5acb53e3" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
</Sequence>
</ui:CommentOut.Body>
</ui:CommentOut>
<ui:CommentOut DisplayName="Comment Out" sap:VirtualizedContainerService.HintSize="483.2,350.4" sap2010:WorkflowViewState.IdRef="CommentOut_9">
<ui:CommentOut.Body>
<Sequence DisplayName="Ignored Activities" sap:VirtualizedContainerService.HintSize="375.2,272" sap2010:WorkflowViewState.IdRef="Sequence_30">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" AlterIfDisabled="True" sap2010:Annotation.AnnotationText="Type the provided Study Package Version into the Study Package Code field" ClickBeforeTyping="False" DisplayName="Type" EmptyField="True" sap:VirtualizedContainerService.HintSize="333.6,179.2" sap2010:WorkflowViewState.IdRef="TypeInto_3" SendWindowMessages="False" SimulateType="False">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Id="4108fcb1-97b3-4e28-ab78-4381dfef4f14" InformativeScreenshot="ddf200ff8ee67427086f9f62957eca42" Selector="<webctrl id='JWTS_myCanvas' tag='CANVAS' />" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:TypeInto.Target>
<ui:TypeInto.Text>
<InArgument x:TypeArguments="x:String">
<Literal x:TypeArguments="x:String" Value="" />
</InArgument>
</ui:TypeInto.Text>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:TypeInto>
</Sequence>
</ui:CommentOut.Body>
</ui:CommentOut>
<ui:CommentOut DisplayName="Comment Out" sap:VirtualizedContainerService.HintSize="483.2,371.2" sap2010:WorkflowViewState.IdRef="CommentOut_10">
<ui:CommentOut.Body>
<Sequence DisplayName="Ignored Activities" sap:VirtualizedContainerService.HintSize="375.2,292.8" sap2010:WorkflowViewState.IdRef="Sequence_31">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" sap2010:Annotation.AnnotationText="Click to the right of the Study Package Attempt label to enter into the field" ClickType="CLICK_SINGLE" DelayMS="[CInt(defaultDelayValue * 0.25)]" DisplayName="Click" sap:VirtualizedContainerService.HintSize="333.6,200" sap2010:WorkflowViewState.IdRef="ClickImage_7" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="13" OffsetY="15" Position="TopRight" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.7" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAABsAAAAaCAYAAABGiCfwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAABuSURBVEhL7Y6BCoAwCET9/5+2ggmiXrkQCfJBzK27vRE3MrISRlbCT2VE794iPdvflumzu8eE3bU6JGxLGRnsrtUBC+de/0O5iDBhi3qP5gzfkNlPQHMGl0YXyHmr7CKaM+LnRCEjK2FkJTTKmA8kFWojOO/AugAAAABJRU5ErkJggg==" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="0f7ba19e-de7a-48e2-9ba6-a6de8b6e6b7d" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
</Sequence>
</ui:CommentOut.Body>
</ui:CommentOut>
<ui:CommentOut DisplayName="Comment Out" sap:VirtualizedContainerService.HintSize="483.2,350.4" sap2010:WorkflowViewState.IdRef="CommentOut_11">
<ui:CommentOut.Body>
<Sequence DisplayName="Ignored Activities" sap:VirtualizedContainerService.HintSize="375.2,272" sap2010:WorkflowViewState.IdRef="Sequence_32">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" AlterIfDisabled="True" sap2010:Annotation.AnnotationText="Type the provided Study Package Attempt into the field" ClickBeforeTyping="False" DisplayName="Type" EmptyField="True" sap:VirtualizedContainerService.HintSize="333.6,179.2" sap2010:WorkflowViewState.IdRef="TypeInto_4" SendWindowMessages="False" SimulateType="False">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Id="1e7e481d-2d47-4a80-9b84-f21dfc80c0d0" InformativeScreenshot="7c0399d75a18442360128a5805f7d445" Selector="<webctrl id='JWTS_myCanvas' tag='CANVAS' />" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:TypeInto.Target>
<ui:TypeInto.Text>
<InArgument x:TypeArguments="x:String">
<Literal x:TypeArguments="x:String" Value="" />
</InArgument>
</ui:TypeInto.Text>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:TypeInto>
</Sequence>
</ui:CommentOut.Body>
</ui:CommentOut>
<ui:CommentOut DisplayName="Comment Out" sap:VirtualizedContainerService.HintSize="483.2,338.4" sap2010:WorkflowViewState.IdRef="CommentOut_12">
<ui:CommentOut.Body>
<Sequence DisplayName="Ignored Activities" sap:VirtualizedContainerService.HintSize="375.2,260" sap2010:WorkflowViewState.IdRef="Sequence_33">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:ImageFound sap2010:Annotation.AnnotationText="Check to see if the expected window heading and empty field are available. An accuracy value of 0.9 is required for a more confident match." DisplayName="Image Exists" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="333.6,167.2" sap2010:WorkflowViewState.IdRef="ImageFound_5">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.9" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAPcAAAA4CAYAAAAhMm4yAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAU5SURBVHhe7ZjBjRw3FEQ3HOuoMKwMrJuhCAylICgCHw3dlM4qAzkEH30c+2tRRvlPfZLd003scOoBBZH1i907PV2QtE8XY8ySuNzGLIrLbcyiuNzGLIrLbcyiuNzGLIrLbcyilOX+9Pmr1Cxm328Efg6sWRx1P/7Zlc5m1n0eHVlu/qKVZjDzXiPw51eawVH34p+70pnMuIcR5W59wWpWZW/lrOtmRu6DjMqpWZW9laOu27oOZkfcp+Ls65sXynJX5Hkvv5ezrpsZuU8vk+e9/F6Oum7vOkfdp+Ls65sXNpebQZbP8DpTzeDznNcM53oZXrMHWjOmN2f4ejjD60w1g8/zap1pzYK9c/gsRS+zxYfHUqgMrxnOVZkVaP6zvPehVZbXGTWDV4lRc4hRcxao/MxoLlBZXmfUDF4lzihas2DkbJ6zn8WoeYjZ6ikxas5i1BxaDfkLtWD0w+fZnmzOK195gfKVFyhf5Sr4fOtcnu3J5rzyW7kWyLTEKC/IPvY5W+VA3gfKC7KPfc4qX3lB5d87ZbkBf3D1ALKnMuDeshU4w2KypzLg6KzyMshUGiXnR89zbvQMyPnW+VuyK9AtN4MHwA+ht2eOyLYE8p7Zkh0B51vXzHvm6KzyMiMZBc5lgbyv4LO9MyobAnnPVNmWVmJTuYP8EHp75ohsSyDvmS3ZUXrXzHvmlmzAnporRnMMziiBvK/gs60zKgeBvGeqbEsrUf5CrSLPe3vmrGymlc2zVhb0Mnne2zO3ZAP21FwxmgNVPvtVLjNyTnlB9qtcsCW7ImW51UNQs2rPXqB85QXKVx6osootWYCMyqlZtWcvUL7ygsoPWjPFlmxQ5bOPfc5WOZD3gfKC7GOfs8pXHqj8e0b+s5wfghKjfPaUGDVnMWoOMcoDeYZ9lQecU2KUz54So+asTGum2JIN+PpKjJqHmBEP+0qMmrMYNYdWo/w/t/rwIYWa8RnMeM1wDnNeM5zrZRRq1sozyGUp1IzPYMZrhnOY85qp/Iqt+QBn+CyvGc615pnsY88+rxnOYc5rhnNVZgU2/0LNvD5WfkFv4dGfi8u9AC63xuU2d88jv8TVZ4f/qM8lcLnvGL/A/38GSo+My33H+AV+gcvMenRcbmMWxeU2ZlFcbmMWxeU2ZlFcbmMWxeU2ZlFcbmMWxeU2ZlFcbnPFp8+/W3eojMttrlAvijmHj799PEQutxnC5Z5HFPP7n99vkstthuEX5enJr8iZuNxmKi73PHK53/387ko8V3K5zTAu9zy43FHkD1+eL89/Xf5T7OM74DJnHVbuuBF0K0e/OK3rqRm8o3+Oe8flngfKzcUGowU/pNz5i+b9npdg74tTnWtdb8+ZR8XlngeXm4sdoNxfv/3943vIpYZOKTez5yXY++JU57b+fPD2/hyr4nLPoyo3iv1qyo15zvEeOQhUHv7MPu9B9pDjfM6Ya1zueeRyZ0Wxp5Q7QFHyl877arbH51mVByoLqjPmGpd7Hlzu/Ms0FHvK/7kzVZnyC4F9y8+Cz1Q+YL86a/q43PNAuUNvfnrzo8goNRf7j19fesGlhl59uRW35Kuzpo/LPQ8udyied9bzl7f/6kNZ8EPKHRdmeN9aY89+cJQP2K/Omj4u9zxyuZXe//K+WfDD/uaOC0MZ9jijfJ4Hlce0ZoHKs+CZNi73PEbKHWoV/LBym/VxuecxWu4QCu5ym92oF8Wcw5Zyh6LUXOyQy22GcbnnsbXcSi63GcblnofLbabics8jinmEXG4zRLwo1v0p43IbsySXyz//V+5hwzjMtgAAAABJRU5ErkJggg==" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="3e0d5e5e-f30a-4848-b720-dfa09aa1e495" TimeoutMS="3000" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
</Sequence>
</ui:CommentOut.Body>
</ui:CommentOut>
<ui:CommentOut DisplayName="Comment Out" sap:VirtualizedContainerService.HintSize="483.2,290.4" sap2010:WorkflowViewState.IdRef="CommentOut_13">
<ui:CommentOut.Body>
<Sequence DisplayName="Ignored Activities" sap:VirtualizedContainerService.HintSize="375.2,212" sap2010:WorkflowViewState.IdRef="Sequence_34">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:CheckTrue sap2010:Annotation.AnnotationText="Check to make sure the standard heading was found" DisplayName="Check True" ErrorMessage="Student Study Package window was not able to be reset as expected" Expression="[elementExists]" sap:VirtualizedContainerService.HintSize="333.6,119.2" sap2010:WorkflowViewState.IdRef="CheckTrue_2">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:CheckTrue>
</Sequence>
</ui:CommentOut.Body>
</ui:CommentOut>
</Sequence>
</ActivityAction>
</ui:BrowserScope.Body>
</ui:BrowserScope>
</TryCatch.Try>
<TryCatch.Catches>
<Catch x:TypeArguments="s:Exception" sap:VirtualizedContainerService.HintSize="561.6,22.4" sap2010:WorkflowViewState.IdRef="Catch`1_3">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ActivityAction x:TypeArguments="s:Exception">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="s:Exception" Name="exception" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Log the underlying exception message and throw a BusinessRuleException" sap:VirtualizedContainerService.HintSize="375.2,350.4" sap2010:WorkflowViewState.IdRef="Sequence_14">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="333.6,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_6" Level="Error" Message="[exception]" />
<f:ThrowBusinessRuleException sap:VirtualizedContainerService.HintSize="333.6,80.8" sap2010:WorkflowViewState.IdRef="ThrowBusinessRuleException_3" Message="[String.Format("Unable to reset the '{0}' window", WindowName)]" TakeScreenshot="True" />
</Sequence>
</ActivityAction>
</Catch>
</TryCatch.Catches>
</TryCatch>
<TryCatch x:Key="student study plan merge" sap2010:Annotation.AnnotationText="Try to reset the Student Study Plane Merge window" sap:VirtualizedContainerService.HintSize="547.2,1798.4" sap2010:WorkflowViewState.IdRef="TryCatch_5">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<TryCatch.Try>
<ui:BrowserScope SearchScope="{x:Null}" Selector="{x:Null}" TimeoutMS="{x:Null}" UiBrowser="{x:Null}" Browser="[ActiveBrowser]" BrowserType="IE" DisplayName="Attach Browser" sap:VirtualizedContainerService.HintSize="510.4,1536" sap2010:WorkflowViewState.IdRef="BrowserScope_8" InformativeScreenshot="d1462725ad6b2109c9772d80cddc7861">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Reset the window as much as possible. " DisplayName="Do" sap:VirtualizedContainerService.HintSize="476.8,1388.8" sap2010:WorkflowViewState.IdRef="Sequence_20">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:InvokeWorkflowFile ContinueOnError="{x:Null}" sap2010:Annotation.AnnotationText="Click the clear button" DisplayName="Invoke Workflow File" sap:VirtualizedContainerService.HintSize="435.2,144.8" sap2010:WorkflowViewState.IdRef="InvokeWorkflowFile_4" UnSafe="False" WorkflowFileName="ClickClearButton.xaml">
<ui:InvokeWorkflowFile.Arguments>
<scg:Dictionary x:TypeArguments="x:String, Argument" />