Global Send Keys - Press Tab

Mojito

New Member
Hi Guys,

I have searched the forum for some answers, but still can not get it to work.

Basically I would like the solution to press tab after it has entered text in a text field.
Enter Text in field -----> Click in field ------> Press Tab.

But i keep getting an error e.g. "Special characters such as {} cannot be used when setting an interval" etc.
Not sure which element in the App Modeller should have Global Send Keys assigned to it and what inputs to pass inside the Navigate Stage. I am putting in "{TAB}" in the input value field, but keep getting the error mentioned above.

There are also instances where nothing is happening when i run through the Action.

Thanks for your help.
 

Attachments

  • Untitled.png
    11.3 KB · Views: 43

DTforrpa

New Member
Can't tell from you screenshot, but are you activating the application window (so it is the topmost active window) prior to sendkeys
 

nagababu

New Member
Hi,
i am facing issue while sending global send keys.
How to send "[dataitem]"
my requirement is sending a query "select * from table where date="13-feb-2020"
the date stored in the data item
 

Sachin_Kharmale

Active Member
Use calculation stage to format string
1- "select * from table where date="
2- concatenate data item date - 13-feb-2020
3- Concatenate " then you will get

"select * from table where date="13-feb-2020"

as per your requirement i hope it will help you,..!
 

nagababu

New Member
Thank you sachin for reply but the method which you proposed is not working i tried already.i tried other method using chr(39) along with concatenation it's working
 
Top