I am currently working with one application that requires to press Numpad Enter (Keycode 13 Location: 3) in specific situations. Regular Enter (Keycode 13 Location 0) does not work.
I have tried to use: Global Send Keys: with {ENTER} Global Send Keys Event: with {ENTER}, ~, {RETURN} VB code stage with:
My.Computer.Keyboard.SendKeys("{ENTER}", True)
They all seems to Press KeyCode 13 Location 0. And I need to press Keycode 13 Location 3 specifically.
Does anyone have an idea how to create in BluePrism functionality to press KeyCode 13 location 3 button?