Loading challenge...
Work with basic HTML tables
Practice locating table cells, rows, and headers with data attributes
| ID | Name | Role | |
|---|---|---|---|
| 1 | John Doe | john@example.com | Admin |
| 2 | Jane Smith | jane@example.com | Editor |
| 3 | Bob Wilson | bob@example.com | Viewer |
| 4 | Alice Brown | alice@example.com | Editor |
| 5 | Charlie Davis | charlie@example.com | Viewer |
Metadata about the table
Total rows: 5
Total columns: 4
Automation hints
data-row-id attribute to locate specific rows in #users-tabledata-cell attribute (name, email, role)locator('tbody tr').count() and verify against #row-countdata-column on headers to identify table structure