Web Tables Prompts | Bondar Academy
Course: AI-based testing with testRigor
Module: Interation with Web Elements
Instructor: Artem Bondar
Lesson Summary
This lesson focuses on automating web tables , which are considered complex UI components in test automation. The process is simplified using Test Trigger with clear prompts. The lesson progresses from simple to complex examples. Key Concepts Covered Deleting Rows by User Email: Identify the row by the unique user email. Use the click command on the trash icon with a partial class value. Example prompt: Click on trash in the context of table at row containing [email] . Deleting Rows by ID: Use unique ID values to delete specific rows. Ensure to specify exact matches to avoid incorrect deletions. Example prompt: Click on trash in the context of table at row containing exactly [ID] . Handling Pagination: Navigate to specific pages using pagination controls. Example prompt for pagination: Click [page number] in the context of pagination . Selecting Values by Coordinates: Identify specific cells using row and column parameters. Example prompt: Click on table at row containing [value] and column [column name] . Using Relative Positioning: Utilize relative locations to select elements when context-based prompts fail. Example prompt: Click on trash completely below actions and to the left of [value] . In summary, the lesson emphasizes using contextual prompts for interacting with web tables, ensuring precise actions through exact matches, and leveraging relative positioning when necessary.