InterviewSolution
Saved Bookmarks
| 1. |
What Is Alternative Approach To Perform Click Operation(without Mouse.click())? |
|
Answer» Move the CONTROL on to UI element using Keyboard.SendKeys(“{TAB}”); then use Keyboard.SendKeys(“{ENTER}”); to perform CLICK operation Move the control on to ui element using Keyboard.SendKeys(“{TAB}”); then use Keyboard.SendKeys(“{ENTER}”); to perform click operation |
|