Hi,
If all you want is gather all the values from the list, create a kind that selects them. Since the
option elements are not clickable, you'll need to first select the drop down list (the OuterHTML property in the Selection panel should look like "<SELECT ...") and then click the
Select first child button in the selection panel at the bottom (now the OuterHTML should look like "<OPTION ...").
Then create your kind with the selected element, then press the
Select next sibling button and add this element to your kind. Now when you select this kind it should select every OPTION element that belong to the SELECT element you first selected. To extract the text of these options elements simply extract the
InnerText property of your created kind.
If your
Select first child button happen to be disabled after you select the SELECT element, create an actions tree with an
Execute JavaScript action with the code below inside. Then run it instead of pressing the
Select first child button. All it does is select the first child of the currently selected element in an alternative way.
Code: Select all
var select = Global.Browser.Selection.GetItem(0);
Global.Browser.Selection.Clear();
Global.Browser.Selection.Add(select.children[0]);