Search text in the table

Hi

I have a table on the page like this:

I tried table extraction but it cant find any pattern and i just need that part under the descripcion to be checked for each line. i need to see if i can find word “TEST” and then continue in the workflow. How could i achieve this? The get-text needs to point to fixed place in the table but the placing can be anywhere in that column, what could be the way to approach this?

@lc1917

first indicate a single cell and get the strict selector to it..and generally it would have a tablerow property which can be increased to access each row use it to go through each row

general selector

<webctrl tag='TD' tablecol='4' tablerow='2' /> this gives 4th column second row value..similarly can change number of tablerow or tablecol to get correspondign row and column values

cheers

ok now i was able to select that column and save it to data table variable, how will i go about now to detect the value? is there some for each in data table or something like that, and i hope it will not limit itself to 8 columns like it is there when i selected it (there was option no limit so i hope it does).

ok i got it working:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.