Create a list from Java screen

Does Java automation has a possibility to create get a list from a screen, e.g. I have components like below:
/Row[1]/Cell[1]
/Row[1]/Cell[2]
/Row[2]/Cell[1]
/Row[2]/Cell[2]

I’d like to get a list created automatically without iterating over the rows and cells

Hi Ernest,

We do support grabbing a whole table/list in one operation. You can use the Get Value form Java App or Get Value from Browser operations to retrieve the list. You’d have to apply the xpath of the table though - so presumably the parent element of your /Row element.

You can then process the output as any other tabular data in ORQA ie using the Data Transformations Operations or Data Filters etc

Hope that helps