StrikekitStrikekit

Tables examples

Click and assert inside a table row as .stk files

Identify a row by unique cell text, then click or assert inside that row.

Click in row

Platform: web

Group: Tables

    Scenario: Edit user in a specific row
        Given I navigate to "$BASE_URL/users"
        When I click on "Edit" in row "chamodh@example.com"
        Then I should see "Edited chamodh@example.com"

Assert in row

Platform: web

Group: Tables

    Scenario: Check status cell in row
        Given I navigate to "$BASE_URL/users"
        Then I should in row "chamodh@example.com" see "Active"
        And I should in row "guest@example.com" see "Pending"

Combined flow

Platform: web

Group: Tables

    Scenario: Activate then verify @smoke
        Given I navigate to "$BASE_URL/users"
        When I click on "Activate" in row "guest@example.com"
        And I wait for see "Active"
        Then I should in row "guest@example.com" see "Active"
        And I should not see "Error"

On this page