Select Multiple Items (NB)

Last modified by Nga Nguyen on 2022/05/16 03:59

RCA.Activities.NativeBrowser.SelectMultiple

Description

The Select Multiple Items activity allows you to select many items from a combo box or list box.

image-20220505151329-1.png

(*For Mandatory)

In the body of activity

  • Pick target element* - Chooses the field on a browser to select the item. This activity will generate a string variable (Selector) to specify the location of that field.

Properties

Common

  • Continue On Error (Boolean) - This property specifies when the automation keeps going if it has an error. Only have two possible values: True or False. True - allows the rest of the process to continue the execution even an error occurs within the activity. False (default) - blocks the process from continuing the execution.
  • Delay After (Int32) - Delay time (in milliseconds) after executing the activity. The default amount of time is 300 milliseconds.
    E.g: 300
  • Delay Before (Int32) - Delay time (in milliseconds) before the activity begins performing any operations. The default amount of time is 300 milliseconds.
    E.g: 300
  • Timeout MS (Int32) - The amount of time (in milliseconds) to wait for the activity to run. If the timeout has expired, the page would not be loaded further. The default amount of time is 30000 milliseconds.
    E.g: 30000

Input

  • Select Type (Dropdown List) - Select list of type
    INDEX – Index of the item (Starting from 0).
    VALUE – Value of the item.
    TEXT – Text of the item.
  • Select Values (String)* - The value based on the type of selection you want to use. It has to be encased in quotation marks.
  • Selector (String)* - Text property used to find a particular UI element when the activity is executed. It is actually an XML fragment specifying attributes of the GUI element you are looking for and of some of its parents.
  • Wait Visible (Checkbox) - Check this box if you want the automation to wait for the target to be visible before executing the activity. This is checked by default.

Misc

  • Display Name (String) - The name of this activity. You can edit the name of the activity to organize and structure your code better.
  • Public (Checkbox) - Check if you want to public it. Remember to consider data security requirement before using it. Default is uncheck.
  
Navigation