Hi, everyone!
I want to find a way to paste in a TD, just knowing the first ID from the website. This is because somtimes the TD ID it´s not sequential. The firtst ID it´s always the “ID=cant1”, but not every case keep the sequential because sometime doesn´t charge well, maybe due internet problems.
All this is because I want to paste from a CSV to automate the data fill.
The red circle is the TD identified as “ID=Cant1”. And never change, but I want to keep pasting from CSV document, but I don´t know how to give the target to the next TD below the first one. any help would be appreciated.
First, do an XClick into the first field (via the first ID that you have). From there, XType | ${KEY_TAB}
should work to jump to the next fields. Then use XType to fill the content into it.
And what should I put in the “target” are of the Xtype? remember that I using a CSVread.
“target” area* I mean in the last comment.
you can always reference to the next element with [i]. Like
xpathExpression[1]
xpathExpression[2]
and so on.
if you can find out with the “count” command how many instance you have from your then lets say 5, then you can use a “Time” loop and the time variable:
times 5
xpathExpression[{!times}]
end.
I don’t know the the exact Syntax but should be close.