-
Notifications
You must be signed in to change notification settings - Fork 288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solution #249
base: main
Are you sure you want to change the base?
Solution #249
Conversation
|
||
it("Should check the visibility of Rows count selection option", () => { | ||
cy.get(".-pageSizeOptions").should("be.visible"); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test case for row count selection should include assertions to verify the change in displayed rows count.
}); | ||
|
||
it("Should test the functionality of delete worker", () => { | ||
cy.get("#delete-record-1").click(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test case for deleting a worker should include assertions to verify that the worker is no longer present in the table.
}); | ||
it("Should delete all workers", () => { | ||
cy.get("#delete-all-records").click(); | ||
//there is no such button?? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test case for deleting all workers should include assertions to verify that all workers are no longer present in the table.
No description provided.