Hello everyone,
I'm have a Excel spreadsheet which I use as settings of my automation. Each line creates a variable within a dictionary. Beside that, a few variables are list type. For example, follows the spreadsheet.
| A | B |
| int_MaxRetry | 3 |
| list1 | ['Test','Test2'] |
| list2 | ['Test3','Test4'] |
When I try to loop through list type variable created, I get an error message. The dictionary does not understand the list type
How should I import this variable so PAD can understand that is a list type?
Thanks!