Hi, i’m a new robocorp-fan.
I have a simple code:
a) start a program
b) 2 enter
c) 1 alt+q
d) 3 arrow down
e) 1 enter
I try with RPA.Windows and
Send Keys keys={ENTER}
It’s ok.
But how can i send alt+q?
I try:
{%q}
{Alt}{q}
{Alt q}
but doesn’t work.
[FAIL] ValueError: “{ALT q}” is not valid
Traceback (most recent call last):
file:///c:/users/auser/.config/robocorp/my-test-mudlet/tasks.robot#18 [Start XMind and Create a MindMap]
Start XMind and Create a MindMap
file:///c:/users/auser/.config/robocorp/my-test-mudlet/tasks.robot#20 (Create a MindMap)
Create a MindMap
file:///c:/users/auser/.config/robocorp/my-test-mudlet/tasks.robot#48 (RPA.Windows.Send Keys)
Send Keys keys={ALT q}
Code is:
Send Keys keys={ENTER}
Send Keys keys={ENTER}
Sleep 3s
Send Keys keys={ALT q}
Thanks.
Andrea