Multiple hotkeys at once

Hi

I have a bot which uses “Tab” for navigation(Send Hotkey Activity). I am using this activity 8 times repeatedly to reach a certain block in my UI. Is there a way through I can replace multiple consecutive hotkeys with a single activity?

Thanks

1 Like

are you using the same hotkey again and again. Then you can use a while loop and repeat that activity how much ever times you want.

2 Likes

Yes

Its for the same key

1 Like

Use the while or Do while loop. :slight_smile:

1 Like

@abdul.hakeem.siraj

You can use a Type Into activity. Indicate which element to start with on the screen and then add
“[k(tab)]”+“[k(tab)]”+“[k(tab)]”+“[k(tab)]”+“[k(tab)]”+“[k(tab)]”+“[k(tab)]”+“[k(tab)]”
for 8 tab movement.

image

4 Likes

You can create one sequence for send hot key then invoke that workflow where ever its necessary.

1 Like

Hi @abdul.hakeem.siraj

Do create a do while loop and set counter var as 0

and conditon as counter<>8

give send hot key as “tab”

Then check it

Thanks
Ashwin S

In Uipath, <> is the not equal to sign?

yes it is

1 Like

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