...
In order to perform this workflow, add steps as shown below.
Action | Parameters | Description | |
---|---|---|---|
1 | OpenURL | “https://google.co.in” | Opens Google home page. |
2 | StoreWindowHandle | “Page1” | Stores the window handle (a unique page ID) of Google home page under the key name “Page1”. |
3 | PressKeys | “~{F1~}” | Stimulates F1 key and opens the help page. |
4 | StoreWindowHandle | “Page2” | Stores the window handle of the Help page under the key name “Page2”. |
5 | SelectPage | “{Page2}” | Selects the page whose ID we have given in the parameter section to perform further actions. |
6 | PressKeys | “~{Ctrl+W~}”“~^w” | Stimulates (Ctrl+W) key and closes the help page. |
...