I need some assistance with automating a web application. After clicking the Email button, a popup window appears showing a table of recipients. The table includes columns like Type, Name, Email Address, and an Action column with a “delete” link for each row.
My requirement is:
Check for duplicate entries under the Name column
Remove only one of the duplicate rows from the web table (using the delete option displayed for each row)
I’m able to extract the data, but I’m unsure of the best way to identify duplicates and then click the correct “delete” link in the UI for just one of those duplicate rows.
If anyone has a recommended approach—using DataTable filtering, LINQ, UI selectors, or table extraction—it would be greatly appreciated.