summaryrefslogtreecommitdiff
path: root/uitest/ui_logger_dsl/dialog_commands.tx
blob: b1837f7efedb9dc749e718eaa990f774fb0145df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
  this file for the Dialog commands
  It handle all types of Dialog the Modeless and the Modal
  Also It handle the Close Dialog Commands
*/
DialogCommand:
  OpenDialog | CloseDialog
;

OpenDialog:
  OpenModalDialog | OpenModelessDialog
;
OpenModalDialog :
  'Open Modal ' dialog_name=ID
;
OpenModelessDialog :
  'Open Modeless ' dialog_name=ID
;

CloseDialog:
  //the additional_note=STRING? if you need to add name in the future
  //Also it's used to make instance of the command of type CloseDialog
  'Close Dialog' additional_note=STRING?
;