Solved
Forum Discussion
JackSparrow
10 years agoFrequent Contributor
Ya I mean like this "should press Ctrl, then press f, then press U and then release all these keys.
or else should Press Tab for multiple times and arrows and Enter Key.
After the above actions an Excel will be auto generated by Application, now I need to save it in a particular path.
baxatob
10 years agoCommunity Hero
You can simulate keystrokes using [Hold] / [Release] / [ReleaseLast] constants within Keys() method.
Or you can record your own low-level procedure: https://support.smartbear.com/viewarticle/88688/
- JackSparrow10 years agoFrequent Contributor
- baxatob10 years agoCommunity Hero
Sure.
Keys("[Up]"),
Keys("[Down]"),
Keys("[Left]") and
Keys("[Right]")
- JackSparrow10 years agoFrequent Contributor
Thanks baxatob