office-gobmx/uitest/ui_logger_dsl/dialog_commands.tx
Ahmed ElShreif 00323f9461 uitest: update UI logger grammar
1) Make small changes in the UI logger Grammar
2) Add Comments to be more documented

Change-Id: I5e68c33375870cf4a1f2537ee1a7eb997145f24f
2019-08-19 22:56:38 +08:00

24 lines
548 B
Text

/*
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?
;