18 January 2026:
Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.
This forum is now archived and is in read-only mode. Please continue discussions on our improved new Sahi Pro Community forum.
Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.
Identifying link in table cell
Let me draw a little picture for start
Provider1 Provider1Address xRemove
Provider2 Provider2Address xRemove
Provider3 Provider3Address xRemove
I have a table (with six columns actually, above picture is a sample) and in last (sixth) column there is a 'Remove' link. Table cell can be accessed by_cell(_table("ProviderGrid"), 3, 6)
What I'd like to do, is reach the link (invoke _click() method) in mentioned cell. How can I achieve this?
Comments
Identify the row containing Provider2 using
_row(_table("ProviderGrid"), "Provider2")
Get its rowIndex and use it to access the related xRemove
Thanks!