The "Select pull-down menu" command can only be used with a HTML standard select element. If a non-select element is specified, this error will be displayed.
Fix in the order 1 and 2.
1. Look for a select element
First, temporarily hide the element and look for another select element that can be selected.
Select elements have the following characteristics.
- UI element name: "***" combo box
- Locator:
- CSS: Anything starting with select
e.g. css=select.***
- XPath: Ending with select
e.g. xpath=//***/select[1]
- CSS: Anything starting with select
If a select element is found, specify the UI element to the "Select pull-down menu" command.
2. Change the command to click one.
If no select element is found, the combo box does not consist of a HTML standard select element. And the "Select pull-down menu" cannot be used, so use the "Click" command.
First, click the UI element of the select box.
When choices appear, capture again and click a UI element of the choices.