AttachedKeyboard keyboard = designerSurface.Keyboard;
keyboard.HoldKey(KeyboardInput.SpecialKeys.SHIFT);
System.Threading.Thread.Sleep(1000);
keyboard.PressSpecialKey(KeyboardInput.SpecialKeys.F10);
System.Threading.Thread.Sleep(1000);
keyboard.LeaveKey(KeyboardInput.SpecialKeys.SHIFT);
System.Threading.Thread.Sleep(1000);
keyboard.Enter("d");
System.Threading.Thread.Sleep(1000);
keyboard.Enter("e");
System.Threading.Thread.Sleep(1000);
keyboard.PressSpecialKey(KeyboardInput.SpecialKeys.RETURN);
Do you think you could extend https://github.com/TestStack/White/blob/master/src/TestStack.White.UITests/ControlTests/MenuItems/PopUpMenuTest.cs with a failing test case which demonstrates what you are trying to achieve. This sounds like an issue, and I do not have the time to replicate and also fix the issue at the moment.
Jake
From: teststa...@googlegroups.com [mailto:teststa...@googlegroups.com]
On Behalf Of Mugdha Kulkarni
Sent: Friday, 23 August 2013 9:36 AM
To: Jake Ginnivan; teststa...@googlegroups.com
Subject: RE: How to access the Context Menu using keyboard
Unfortunately that's exactly what I am trying to avoid for a reason. :(