Afternoon all.
Bit of an odd one - currently trying to read from an element on a browser by dynamically shifting the web path.
Example of item 1:
/HTML[1]/BODY[1]/DIV[2]/DIV[2]/DIV[4]/DIV[1]/DIV[1]/DIV[1]
Example of item 2:
/HTML[1]/BODY[1]/DIV[2]/DIV[2]/DIV[4]/DIV[1]/DIV[1]/DIV[2]
So it's just the final DIV that needs to be amended. So, I've entered this into a parameter:
"/HTML[1]/BODY[1]/DIV[2]/DIV[2]/DIV[4]/DIV[1]/DIV[1]/DIV[" & [WarningRowCount] & "]"
With obviously WarningRowCount incrementing by one each time. This is set to be stored into [collection name.column 1].
However, I get this error message when running:
ERROR: Internal : Can't access collection [collection name - out of scope
I've been wracking my head with this for about half an hour now, any ideas?