The second error is because you are trying to read an element that is not a Table
, but a List
, as a DataTable
.
If you want to click on a specific item in the list, you can use the click
command directly, passing the item you want to select:
/root/panel[1]/panel[1]/panel[2]/panel[1]/list[1]/item[@name="Element name"]
Since it is not possible to see the properties of each item, the last element of the XPath is generic.
Remember that in some cases the elements are assembled dynamically, so you need to perform another action before for RPA to load/identify the items on the list.
I don't know if this applies to you, but just for your information.