Clicks on a specific column in a row identified by a selector.
The Playwright page object
The 1-based index of the column to click
The selector key for the row (can be a fixture key or raw CSS selector)
Optional
Optional table data for click options
When I pw click on 1st column in row "table#users tbody tr:first-child" Copy
When I pw click on 1st column in row "table#users tbody tr:first-child"
When I pw click on 2nd column in row "tr.user-row" Copy
When I pw click on 2nd column in row "tr.user-row"
When I pw click on 3rd column in row ".data-table tbody tr:last-child" Copy
When I pw click on 3rd column in row ".data-table tbody tr:last-child"
When I pw click on 4th column in row "tr[data-id='123']" Copy
When I pw click on 4th column in row "tr[data-id='123']"
Clicks on a specific column in a row identified by a selector.