How to send "{" key using send keys/Events?

Venkat yaramala

New Member
Hi all,


trying to send some text between curly braces Ex: {text to be send} using Global send keys/Events to an application.
not able to pass it due which is inbuilt symbol to send any text {Home}{Ctrl} using send keys and send keys events.

can any one faced this before?

Thanks in advance.


Regards,
Venakt
 

sahil_raina_91

Active Member
Hi all,


trying to send some text between curly braces Ex: {text to be send} using Global send keys/Events to an application.
not able to pass it due which is inbuilt symbol to send any text {Home}{Ctrl} using send keys and send keys events.

can any one faced this before?

Thanks in advance.


Regards,
Venakt

1) Either use clipboard to paste directly on the element OR
2) If you want to achieve via send keys, you need to enclose any special character in {}
Example :
For { , write "{{}"
For } , write "{}}"
 
Top