How to Setup Dashboard in Cypress N B 7/16/2020 06:56:00 pm 0 DashBoard Cypress provides Dashboard as cloud service Once you Open Cypress, Click on Runs and... Read more »
How to install or Setup Cypress in Windows N B 7/16/2020 06:54:00 pm 0 Installation of Cypress Downloading Cypress Run the below command in power shell npm install cypress After Installation i... Read more »
Page Object Model in Cypress N B 7/16/2020 06:51:00 pm 0 Page Object Model in Cypress Lets Create a Login Page Class class LoginPage { visit(){ cy.visit('https://a... Read more »
Cypress Hooks N B 7/16/2020 06:50:00 pm 0 Cypress Hooks beforeEach afterEach before after describe ('Practice Hooks',function(){ before (function... Read more »
How to Write Test case in Cypress N B 7/16/2020 06:49:00 pm 2 Cypress test consists of describe (): It is is simply a way to group our tests. It takes two arguments, the first is the name of the tes... Read more »
Find, First ,Set Cookie, Wait ,Assertions, Navigating in Cypress N B 7/16/2020 06:48:00 pm 0 Find, First Command describe('Inputs',function(){ it('Cypress Find',function(){ cy.visit('https://the-i... Read more »
How to Run Cypress Test from command line(Sample Test Case) N B 7/16/2020 06:46:00 pm 0 How to Run Cypress Test from command line PS C:\Users\T460\AppData\Local\Cypress\Cache\4.9.0\Cypress\ project > cypress run --spec ... Read more »
How to Integrate Cypress with Jenkins and GitHub N B 7/16/2020 06:41:00 pm 0 Setup Jenkins 1.) Add Git and Node Plugins in Jenkins 2.)Under Manage Jenkins-> Global Tool Configuration Now we will I... Read more »
How to Generate Report in Cypress N B 7/16/2020 06:39:00 pm 0 Generate report with Mocha Awesome First install cypress Globally npm i -g cypress npm install --save-dev mochawesome npm ... Read more »
How to Download File with Cypress N B 7/16/2020 06:37:00 pm 0 Cypress Download File npm install --save-dev cypress-downloadfile Note: In case you get error Try below command npm insta... Read more »
File Upload in Cypress N B 7/16/2020 06:35:00 pm 0 File Upload in Cypress For this we will need to install a new Cypress node module ( cypress-file-upload ) Run the below command in... Read more »