Module 10

Table/Grid Validation

Module objective: Validate grid behavior for filtering, sorting, and pagination with deterministic assertions.

Main flow: Execute structured test cases for filtering, sorting, pagination, and row-data validation.

Test Cases

TC-01 Filter (Single Match)

Steps: Type Bora in search input.

Expected: Only one row remains and Name column shows Bora.

TC-02 Filter (No Match)

Steps: Type ZZZ in search input.

Expected: No rows are shown and page indicator remains valid.

TC-03 Sorting (Score Descending)

Steps: Clear filter, click Sort by Score Desc.

Expected: First row score is the highest value from current dataset.

TC-04 Pagination (Forward Navigation)

Steps: With multiple rows available, click Next.

Expected: Page indicator changes and row set updates for next page.

TC-05 Pagination (Backward Navigation)

Steps: After moving to page 2+, click Prev.

Expected: Page indicator decrements and previous page rows are restored.

TC-06 Row Data Integrity

Steps: Validate Name/Team/Score values after filter + sort + pagination actions.

Expected: Row values remain consistent with dataset and no column mismatch occurs.

Live Grid Area

How to use: Perform above test cases using these controls and observe status/output.

Expected result: Status becomes Passed when sort action is successful and data behavior remains consistent.

NameTeamScore

Pending: run filter, sort, and pagination checks.