How do I press 'Right' arrow in the keyboard
This example demonstrates how to move the cursor or insertion point right.
In the solution shown below, you will see that the cursor is moved to the right in the "Income" input field in HICC by passing "Keys.ARROW_RIGHT" as value to the "sendKeys" command.
Solution:
# | Command | Target | Value |
---|---|---|---|
Moving the cursor to the right by one position in the "Income" input field | |||
1 | sendKeys | id=txt_income |
Keys.ARROW_RIGHT |
Tips, Tricks, Gotchas & Best Practices:
- If "Keys.ARROW_RIGHT" action doesn't work, as an alternative use "Keys.END" in the value.