Last active
January 9, 2022 09:35
-
-
Save hypeJunction/c1633c12e25a97910f11d3fe7ac9d88e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
cy.getInput('Add File').attach('bear.jpg'); | |
// Wait for file to finish uploading | |
cy.getList('File List') | |
.getListItem('bear.jpg') | |
.progress() | |
.its('value') | |
.should('eq', '100'); | |
// Remove uploaded file | |
cy.getControlsFor('bear.jpg') | |
.getButton('Remove') | |
.press(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment