Unable to click Table cell value using pega robotics

Hi All,

Unable to click Table cell value through pega robotics, designed table and search the required data cell, after that unable to click datacell, based on row click another grid will visible , but it’s not clicking and tried sending keys also , send keys not working ,webAdapter is sap based application , please help

Edited by Moderator Marissa to update Platform Capability tags*

I would suggest examining the cell to see if there are any JavaScript events it is raising. You might also try raising various JavaScript events on the cell. Does the cell contain a hyperlink? If so, you might interrogate that and click it instead. You might also need to actually click on the row. I can’t recall if that element is exposed in the HTML designer, but you could confirm in interrogation mode by using “Select Element” and selecting the TR tag for a row. If that click works, but not in the HTML table designer, you might need to interrogate the table as you would in the Universal Web Adapter (where you interrogate the Table as a container, the row as a container (with UseKeys enabled), and the cell(s) beneath each row.

Thanks Thomas for your reply,

It is working fine used Performclick on cell to get focus exact cell and then send keys on iexplore with " " but i had to use pause 2 sec before send key and after send keys to highlight row , any how it is working fine now.

Thanks Again