Facing issue while extracting text from table

Hi,

I am facing issue for extracting the text from below table. I tried to extract it by traversing each row one by one using control id. Also tried to use JavaScript to fetch it. But both options are not working. Can you please help to suggest the solution.

image

Thanks in advance.

Hi,

Can this application be accessed over open internet.

If not check in HTML DOM structure how this table has been defined. Is it under tag

Regards,
Amit Anand

Hi Amit,

Yes, this is cloud instance. It can be accessed over open internet.

Hi,

Looking at HTML dom the rows are not defined in table tag. So, you will not be able to iterate over the rows.

You will have to configure each field individually

Regards,
Amit

Hi Amit,

I think its defined in table tag. Please refer the below screenshot.-

The number of rows are not fixed. It can vary. How should I capture this?

Hi Team,

Please suggest the solution for this.
Thanks in advance.

Hi,

Table row ids appear to be dynamic and no pattern can be formed for css selector for these kind of tables. So usual approach of iterating over table rows will not work.

See if by using Java Script you are able to get table rows data

Regards,
Amit Anand

Okay. Will check it. Thanks you.