"MULTI_ACTION" Command

Description: This command allows using various multiple functions such as drag and drop, click and hold, release etc as well as Selenium action commands.

Usage Scenarios:

1- Suppose we want to use Send_Keys to pass the username and password to Reference app and login afterwards.

Procedure: Define steps that navigate to our Reference app and click Login link. Then define a step with this command. Define the locators and enter/inject the values. Your step will look like this:

image-20240606-171740.png

 

2- Suppose we want to add more options to the above example by waiting for 3 seconds after the email address is filled and navigate using keyboard to the Password field without using a locator.

Procedure:

  • In your step with Multi_action command, define a step with Send_Keys, use the locator for the email address field and enter/inject the email address.

  • Click + to add another action, select Pause and enter 3 seconds.

  • Click + to add another action, select Send_Keyboard_key and select Tab from the dropdown list.

  • Click + to add the final action, select Send_Keys and enter/inject the password.

Your step will look like this:

image-20240606-171952.png

 

Â