All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
New to Test Studio and we're trying to record a specific keyboard combination of Ctrl + Alt + Shift + P.
How would I go about creating a test step?
Thanks
Manager.Desktop.KeyBoard.KeyDown(System.Windows.Forms.Keys.LControlKey);
Manager.Desktop.KeyBoard.KeyDown(System.Windows.Forms.Keys.Alt);
Manager.Desktop.KeyBoard.KeyDown(System.Windows.Forms.Keys.LShiftKey);
Manager.Desktop.KeyBoard.TypeText(
"P"
);
Manager.Desktop.KeyBoard.KeyUp(System.Windows.Forms.Keys.LShiftKey);
Manager.Desktop.KeyBoard.KeyUp(System.Windows.Forms.Keys.Alt);
Manager.Desktop.KeyBoard.KeyUp(System.Windows.Forms.Keys.LControlKey);