Рет қаралды 22,175
All FREE courses - automationstep...
File Upload
File Download
Reporting
File upload in cypress
SETUP
Step 1 : Install plugin cypress-file-upload
npm install --save-dev cypress-file-upload
Step 2 : If you are using TypeScript, ensure your tsconfig.json contains
"compilerOptions": {
"types": ["cypress", "cypress-file-upload"] }
Step 3 : Add to cypress/support/commands.js
import 'cypress-file-upload';
Step 4 : Check this commands.js is imported in cypress/support/index.js
(it might be commented)
// Import commands.js using ES2015 syntax:
import './commands';
TEST
Step 1 : Create a new test
Step 2 : Add command to visit the web page
cy.visit(' ... ')
Step 3 : Add command to upload file
cy.get('[name="myfile"]').attachFile(' filePath ');
File download in cypress
SETUP
Step 1 : Install plugin cypress-downloadfile
npm install cypress-downloadfile
Step 2 : Add to cypress/support/commands.js
require('cypress-downloadfile/lib/downloadFileCommand')
Step 3 : Add to cypress/plugins/index.js
const {downloadFile} = require('cypress-downloadfile/lib/addPlugin')
module.exports = (on, config) => {
on('task', {downloadFile}) }
TEST
Step 1 : Create a new test
Step 2 : If autocomplete does not work add at the top
/// <reference types="cypress-downloadfile"/>
Step 3 : Add command to download file
cy.downloadFile('filepath/demo.txt, 'mydownloads' ,'demo.txt')
Cypress HTML REPORTS - • Cypress Beginner Tutor...
#CypressBeginnersTutorial
____________________________________________________________
Stories by Raghav - automationstep...
My Udemy Courses - automationstep...
Every LIKE & SUBSCRIPTION gives me great motivation to keep working for you
You can support my mission for education by sharing this knowledge and helping as many people as you can
If my work has helped you, consider helping any animal near you, in any way you can.
----------- CI | CD | DEVOPS -----------
Jenkins Beginner - bit.ly/2MIn8EC
Jenkins Tips & Trick - bit.ly/2LRt6xC
Docker - bit.ly/2MInnzx
Kubernetes - bit.ly/2MJIlMK
Ask Raghav - bit.ly/2CoJGWf
Interviews - bit.ly/2NIPPxk
All Playlists - bit.ly/2LSiezA
---------- Connect with Raghav -----------
Udemy Courses - www.udemy.com/...
Twitter - / learnwithraghav
KZbin - / automationstepbystep
Never Stop Learning
Raghav