0% found this document useful (0 votes)
14 views2 pages

How To Start Your First Test in Cypress

Uploaded by

sherif.vfs
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views2 pages

How To Start Your First Test in Cypress

Uploaded by

sherif.vfs
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Steps To Prepare For Your Test

1- Create new folder on any place in your device.


2- Drag and drop the created folder inside Cypress or Open this folder from cypress.
3- Open new terminal inside cypress and type npm init -y
4- Write this command inside terminal after init: npm install cypress
5- Write this command to open browser: npx cypress open to prepare the environment for your test cases
6- Remove import command inside the created file e2e.js
7- Write ///<reference types=”cypress”/> inside e2e.js to eliminate autocomplete command and only suggest it.
8- Remove all created example in e2e folder and create new file Filename.cy.js

Write Your First Test Case

1- It(“test case description” , function() {

Cy.log(‘present sentence to the user’);


Cy.visit(‘URL’);
Cy.get

});

2- It(“test case description” , ()=> {

Cy.log(‘present sentence to the user’);


Cy.visit(‘URL’);
Cy.get

});

3-
Burger King Restaurant Registration Example:

cy.log('Hello Burger King');


cy.visit('https://order.burgerking.com.sa/?high-contrast=on');
cy.get('.cookie-banner__accept-btn > .v-btn__content').click();
cy.get('.d-flex > #register > .v-btn__content').click();
cy.get('.auth-modal-buttons > .c-button > .v-btn__content > span').click();
cy.get('.v-text-field__slot').type('[email protected]{enter}');
cy.get('.v-text-field__slot').type('123456{enter}');

});

Burger King Takeout Example:

Burger King Delivery Example:

You might also like