I want to switch on previous screen via below SikuliX 1.1.0 script but it is not working as needed and it seems that it skipping the below instruction:
KeyDown(Key.ALT)
type(Key.TAB)
keyUp()
Please guide if anybody have found solution on it ;)
I want to switch on previous screen via below SikuliX 1.1.0 script but it is not working as needed and it seems that it skipping the below instruction:
KeyDown(Key.ALT)
type(Key.TAB)
keyUp()
Please guide if anybody have found solution on it ;)
If you want to press ALT + TAB, you could use the next command:
type("\t", KeyModifier.ALT)
Here you will find a similar answer to your question. Works for other key modifiers too.