Send keys in rpa.windows

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

Hi Andrea and welcome to the forum!

Did you try {ALT}q ?

2 Likes

Hi, it works thanks! No error. But nothing happens, i try in notepad, xmind, other software.

Es.
Windows Search Notepad
Sleep 2s
Send Keys keys=ciao
Send Keys keys={ALT}f

It writes “ciao” but don’t open “File Menu” :(((

Andrea

Could you try with

Control Window    Notepad
Send Keys    keys={LALT}{f}

Looks like ALT is sending altgr

1 Like

Try the below, it works for me:

Control Window Notepad
Send Keys keys={Alt}F

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.