Victor Hugo Cisneros
Victor Hugo Cisneros

Reputation: 43

How to upload a txt file using Cypress?

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 html code snippet This is the html code snippet:

This is the function I have:

This is the function I have

Upvotes: 0

Views: 251

Answers (1)

Yuran Pereira
Yuran Pereira

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

Related Questions