Last active
July 26, 2023 18:58
-
-
Save aldefouw/2fd99b4811bc84660044f08673634ed2 to your computer and use it in GitHub Desktop.
Verification: Report Rows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## STEPS TO VERIFY ROW(S) IN REPORT DATA | |
When I click on the link labeled "Data Exports, Reports, and Stats" | |
Then I should see a table row containing the following values in the reports table: | |
| A | All data (all records and fields) | | |
When I click on the button labeled "View Report" | |
#Specific row identifying multiple cells | |
Then I should see a table row containing the following values in the report data table: | |
| Event 2 (Arm 1: Arm 1) | | 1 | | | Name | [email protected] | Unverified | | |
#Specific row / column combination | |
And I should see a "1" within the "Event 2 (Arm 1: Arm 1)" row of the column labeled "Repeat Instance" of the Reports table | |
#You can also look for blank values | |
And I should see "" within the "Event Three (Arm 1: Arm 1)" row of the column labeled "Repeat Instance" of the Reports table | |
#Remember, testing for something that does NOT exist is discouraged ... unless you've already tested in a previous feature that it does exist. | |
And I should NOT see "My repeat event name" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment