Table - Simple Challenge
Master basic table operations and data extraction.
Beginner
20-25 min
Basic Table Operations
Master table parsing, row/column navigation, and data extraction.
Test Cases to Automate
1
Extract table headers2
Count total rows3
Get specific cell data4
Find row by text and extract data5
Extract entire column data6
Find maximum/minimum valuesSelenium Solution
🎯 Practice Table
Name | Age | Salary | |
---|---|---|---|
Raj | raj@example.com | 25 | 50000 |
John | john@example.com | 30 | 60000 |
Alice | alice@example.com | 28 | 55000 |
Bob | bob@example.com | 35 | 70000 |
💡 Table Navigation Tips
- • Headers: table thead th
- • All Rows: table tbody tr
- • Specific Cell: tr[1]/td[2]
- • Find by Text: tr[td[text()='value']]