Fellows, I’m web scrapping a website that contains multiple tables. They are not necessary related, but the automation later on is the same. If I Extract all tables and merge them, I can run my automation “fine.” However, since I need a Dynamic Selector, there are names that are the same in other tables, crashing my automation. That’s why I thought, I could use a List of DataTables and that should be all. However, when I check the values, they are empty and I don’t know why.
This is what I’m doing:
Process:
Variables:
However, when I run it and loop through the result is always empty:
Option 1:
Option 2:
Result:
If I use the merged table like this it works, but I have the duplicated issue:
Do you have any idea what am I doing wrong? Thanks.