15-02-23 05:03 AM
Hi Team,
I need to send some text then CTRL A then CTRL B then ENTER then again some text could you please show me how this is done.
15-02-23 06:36 AM
Hi
Try this way
> Take a navigate stage drag root element >Select global send keys option> Input text provide First set of text > Next click add
Repeat the above steps except the input text value changes ( "^(a)" for ctrl A , "^(b)" for ctrl B , "{enter}" for enter , next will be your own text )
Pause after each step give some time like .2 or more and test
Stage should look below
Hope this helps you
Regards
Lakshmi Narayana
15-02-23 06:37 AM
Hi Jishnu,
The ENTER is easiest, you put:
"{ENTER}"
...in the value to be sent and you're ready.
The Ctrl+A can be written as ^A, so you would send:
"{^A}"
...to get that done
This page:
https://community.blueprism.com/viewdocument/global-send-keys-a-guide-to-send#:~:text=Global%20Send%20Key%20Events&text=It%20is%20a%20lower%2Dlevel,about%20how%20to%20use%20these.
...provides you with more info. There's a PDF that explains the principle and gives some examples.
15-02-23 06:54 AM
Global Send Keys : "^A^B~"
Global Send Key Events : "<{CTRL}AB>{CTRL}~"