Hi guys, do any of you know if it's possible to use variables in conjunction with the CSS Selector?
I'm trying to select a table row which is :nth-child(N) in that table.
N is a variable set with Extract before fetching the row data, starting in 1, and then I do another Extract command with N+1.
To fetch the data I try to use .row:nth-child(N) to tell worker where to search for the next row.
This is due to an infinite scroll table list which resets the entire list every time the scroll gets new data, so the tutorial which includes delete does not fit this scenario (duplicate entries and loads the work).
Lastly, I haven't found a way to check if the scroll is the last one possible and my plan is that the worker will just Stop running since there will be no possible nth-child to select and in so reaching the bottom.
I've attached pics of my parsreHub tree for some visual aid, please let me know what other alternatives there are. Perhaps Xpath does accept variables as I'm trying to use.
Thank you for your time,
Adrián.