I am writing a c# code to test UI in my application. I want to send ENTER from Keyboard.
I already checked TestStack.White.WindowsAPI.KeyboardInput.SpecialKeys
. It doesnt contain any method send ENTER.
Thanks.
I am writing a c# code to test UI in my application. I want to send ENTER from Keyboard.
I already checked TestStack.White.WindowsAPI.KeyboardInput.SpecialKeys
. It doesnt contain any method send ENTER.
Thanks.
Any reason you can't use KeyboardInput.SpecialKeys.RETURN
? It should do the same thing and get you what you need.
© 2022 - 2024 — McMap. All rights reserved.
KeyboardUI
hasEnter
which isInput
andPressSpecialKey
RETURN
which isENTER
. Somewhat misleading. – Sideline