I have a need to select the Identifier value from the FSAN row (see screenshot).
In the example, it is in the 4th row but it can be in the 2, 3, 4, and sometimes 5th row. How do I find the row # the word “FSAN” is in for column 2 and then get the value in the same row but column 1?
Since According to figure posted by @zigmo on his query, it is a table format
Since u need to select the identifier based on row that contains FSAN
u can try the following
Datascrape the table (along with identifier and their corresponding url which help to naviagate to page when we click on identifier)
Since after datatscrapping data is stored in datatable u can use some condition to validate where row("Type).Equals(“FSAN”)
( Inside for each row.i am validating)
When it is equal u can use the identifier or it’s corresponding url to naviagate to webpage
Or instead of using url u can use click activitiy to click the identifier by making it as dynamic
(By using identifier number to identify the element to be clicked)