9

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.

mayu789
  • 103
  • 1
  • 5

1 Answers1

12

Any reason you can't use KeyboardInput.SpecialKeys.RETURN ? It should do the same thing and get you what you need.

Graeme Harvey
  • 136
  • 1
  • 2