Reputation: 43
I can't upload a txt file using cypress, the test passes but the file won't upload. I´m usig the cypress-file-upload plugin. My file is in the fixtures folder.
This is the function I have:
Upvotes: 0
Views: 251
Reputation: 256
Are you using an input
tag of type="file"
? If not try it. So instead of doing
cy.get('.col-xs-12 > .btn')
you could try
cy.get('#id-of-input-tag')
Upvotes: 1