I am working with Textbox to convert characters. I needed to press 'Oem3(192 in keys enum)' key automatically. I tried sendkeys(), but I cannot find that key. What can I do to send that key to textbox? Codes I tried:
sendkeys.send({OEM3}); //error
sendkeys.send(keys.Oem3); //just entering '192' into textbox
sendkeys.send({192}); //error