cypress-upload-file-post-form icon indicating copy to clipboard operation
cypress-upload-file-post-form copied to clipboard

Solution for two Cypress testing use-cases I came across with: perform a direct http FORM request to the server containing a file and other parameters and upload a file into a form before submission

Results 2 cypress-upload-file-post-form issues
Sort by recently updated
recently updated
newest added

Code it('Questionnaires ', function() { const yourFiturePath = 'cypress\fixtures\pic\hd4.jpg cy.get('.upload-button').attachFile(yourFiturePath) cy.get('.save').click() } hd4.jpg file is present in the given path but It's giving me the error ![tile](https://user-images.githubusercontent.com/61974824/94356611-1a457080-00ae-11eb-92e8-a2d7acbfc02d.png)

Hi I'm downloading a file from a site and uploading the same downloaded file in the same test run. But In order to upload the file, it asks me to...