Skip to content

How do I perform 'Shift'+'Tab' action in the keyboard

This example demonstrates how to move the cursor or insertion point to switch back to the previous fields.

In the solution shown below, you will see that the cursor is moved from "Income" input field to "Age" input field in HICC by passing "Keys.SHIFT.TAB" as value to the "sendKeys" command.

Solution:

# Command Target Value
Moving the cursor from "Income" input field to "Age" input field
1 sendKeys id=txt_income
Keys.SHIFT.TAB

Tips, Tricks, Gotchas & Best Practices:  

  • If the "Keys.SHIFT.TAB" doesn't work you can use click or focus command as an alternative.


Feedback and Knowledge Base