I'm having some issues trying to search the column of a table for a specific phrase.
I have a large table (3 rows, 350 columns) and I'm trying to search the column of a table for a specific value (i.e. //table[3]/tbody/tr[4]/td). I'm wondering if there's a way to search through all the rows of the table...
i.e. //table[3]/tbody/tr[search all the rows in the table]/td
... so as to determine of a specific value (i.e. 'bash') is in my 'td' column.
i.e.
Table:
Name Version N/A
cookie 2.3 [BUTTON]
ice 2.3 [BUTTON]
paper 2.3 [BUTTON]
lib 2.3 [BUTTON]
bash 2.3 [BUTTON]
.
.
.
.
The reason I need to search the column rather than look in a specific cell address, is because the variable may be in the table, but will not always be in the same row.
PLEASE HELP! Thanks ahead of time!!