Cypress in a nutshell

In this tutorial, we will get some information about End-to-end testing, Cypress Test Automation Framework, and even we will use it in the example.

E2E Testing

What is E2E Testing? End-to-end testing is a type of testing in which we test business processes (user journey) from start to finish under production-like circumstances.

The most advantage of E2E testing is for instance that ensures Complete Correctness & Health of the Application. Moreover, it can also increase Confidence in the Application or even reduce Future Risks. In addition, it also reduces the risk of repetitive efforts.

Besides advantages, E2E testing has also disadvantages. One of the most disadvantages is that E2E tests take longer to run depending on how we have written the test. Tests also require regular maintenance.

We can execute End-to-end testing manually, however, we can also run automated test scripts. In this tutorial, we will execute an automated E2E test script.

E2E Automation Testing frameworks

As you decided to start scripting End-to-end test scripts, you consider that in which E2E automation testing framework to execute it. Let’s take a look at the 3 most popular E2E automation testing frameworks.

Selenium

https://www.learntek.org/blog/wp-content/uploads/2018/05/Selenium-3-webdriver.jpg

Selenium is the one of oldest test automation frameworks. It provides packages for various programming languages such as Java, Python, C#, Ruby, Javascript, etc. Selenium has a wide range of functions that help you simulate almost every action that a user would perform. If you want to learn more about Selenium, you can take a look at this tutorial.

Cucumber

https://miro.medium.com/max/1026/1*K1KfJMd2orqXEpctzPciFA.png

Cucumber focuses on behavior-driven development (BDD). We can build a product by considering the perspective of different stakeholders for instance developers, QAs, customers, etc. The main reason for Cucumber’s popularity is its simplicity.

https://cdn.vox-cdn.com/thumbor/MUX4KO2mq7yZQzh9jhdljDX7tbg=/1400x788/filters:format(jpeg)/cdn.vox-cdn.com/uploads/chorus_asset/file/21708905/AdobeStock_297794534.0.jpg
Is that Cypress? It is, but we mean the E2E test automation framework

Cypress

Cypress is another framework that has made the life of testers much easier. It reduces the problems faced while using Selenium by using a different architecture than that of Selenium. In this tutorial, we will tell ourselves more about Cypress.

What is Cypress?

https://www.cypress.io/static/cypress-io-logo-social-share-8fb8a1db3cdc0b289fad927694ecb415.png

As we’ve had an occasion to say that before, Cypress is an end-to-end automation testing framework. To create the tests in Cypress we’re using Mocha which is a JavaScript programming language framework. Cypress makes asynchronous testing simple and convenient. It also uses a BDD/TDD assertion library and a browser to pair with any JavaScript testing framework.

How does it work?

How does Cypress work?
How does Cypress work?

In this section, we will see how Cypress works.

Cypress provides us a test script runner which is presented as a visual interface. It indicates all tests and which all commands are run, passed, or failed. We can test highly interactive applications and perform different tests such as manipulating the DOM, asserting that if some element is available, present or not on the screen. We may test also reading or writing data into or from fields, submitting forms, and even redirecting to a different page without actually making direct modifications to your code.

Advantages and disadvantages

As we know how Cypress works, it’s a good time to see the advantages and disadvantages. It will help us to make a decision if we want to use Cypress in our End-to-end testing process, or maybe we want to choose another E2E framework.

Advantages of Cypress:

  • Cypress is JavaScript-based, that means we can test anything that runs in a browser
  • We can use Cypress for CrossBrowser testing, it’s supported by most popular web browser such as Chrome, Firefox or Edge. We can see a full list of supported web browsers here
  • Cypress is stable, which means that features like sleep or wait are not necessary because it has a built-in mechanism that handles waiting for DOM elements
  • Cypress supports interacting with an API for end-to-end testing
  • It gives you the ability to travel back in time to each command’s snapshot like “cy.contains” what allows us to view what happens before or after some action in a specific command

Disadvantages of Cypress:

  • Cypress doesn’t support mobile testing 
  • Cypress does not handle all native events as it uses synthetic events such as file upload, hover and scroll are not supported yet.
  • It doesn’t support any other browsers such as IE, Safari, or Opera
  • Cypress doesn’t support any other programming language. If you don’t like JavaScript then you need to find another E2E testing framework

Convinced? Let’s install Cypress then!

As we’ve decided to use Cypress in our E2E automation testing process, we need to install it on our machines.

I’ll use macOS operating system in this tutorial, so if you have a Windows operating system don’t worry. I will show you how to install Cypress. All rest will be a work in IDE so it doesn’t matter what kind of OS are you using 🙂

First, we need to open a terminal and enter brew update for macOS.

brew update command
brew update command
brew update output
brew update output

Once our brew has been updated, we can enter the brew install node in the terminal.

brew install node command entered
brew install node command entered
brew install node output
brew install node output

Once our Node.js has been installed, we may check the version of node and npm (installed with node) by using commands: node -v and npm -v. We should get the following output.

node -v and npm -v commands output

Don’t worry if you’re using Windows OS, you can simply download and install node.js here. To check the version of node and npm on Windows you need to enter the following commands on Command Prompt: node -v and npm -v.

Once we’ve installed npm, we can install Cypress using the command: npm install cypress.

npm install cypress command
npm install cypress command

We should get the following output.

Cypress installed
Cypress installed

If you’re using Windows OS, you can simply download and install Cypress here.

Running interactive Test Runner

As we can see in the last screenshot, there is a command which allows us to open Cypress. Indeed, it is a command that we will use to open Cypress Test Runner. Let’s enter this command in the terminal: node_modules/.bin/cypress open (in Windows OS it can look a bit different).

node_modules/.bin/cypress open command in terminal
node_modules/.bin/cypress open command
Test runner opened
Test runner opened

Cypress runs tests in a unique interactive runner that allows you to see commands as they execute while also viewing the application under test. We have here one testSample file to see how the test runner works.

Let’s run the testSample and see what happens upon clicking Run 1 integration spec.

Test Runner explanation
Test Runner explanation

If you are interested to find more information about Test runner, click here.

First script

Now we can write our first test script but before we will do that, it’s worth explaining the folder structure.

Folder structure
Folder structure

sampleTest is a folder where we keep all the files inside the cypress folder and node_modules folder. Cypress folder contains fixtures folder, which includes data to use in the test process. Moreover, the cypress folder contains an integration folder where the files are for test execution. In addition, the cypress folder contains a plugins folder where we can find the opportunity of extended cypress functionality and videos where we can find test evidence recordings. Node_modules folder includes the node files required to run cypress tests.

First script
First script

This what we wrote just now is the simple test script, which allows cypress to visit the website.

Describe as the name points, describes the name on the main test (user journey). It describes the test which is the specific phase of the user journey. cy is the shortcut of cypress then we put . and command visit to tell our script that we need to visit the website, in that case Testing Traveler website.

We can run our script in the test runner.

We clicked Run 1 integration spec and we can see the following output.
We clicked Run 1 integration spec and we can see the following output.
Test executed in Test Runner
Test executed in Test Runner

We can also execute the same test in the IDE terminal upon clicking the Run icon.

Test executed in IDE
Test executed in IDE

Congratulations! We’ve executed our first test 🙂

List of useful commands

When we create the test scripts, it’s nice to have a list of useful commands.

cy.visit() – Visit a remote URL

.and() – Create an assertion. Assertions are automatically retried until they pass or time out.

cy.viewport() – View the website in specific screen size

cy.contains() – Get the DOM element containing the text. DOM elements can contain more than the desired text and still match

cy.should() – Create an assertion

cy.get() – Get one or more DOM elements by selector or alias

cy.url() – Get the current URL of the page that is currently active

cy.click() – Click a DOM element

cy.check() – Check checkbox(es) or radio(s)

cy.log() – Print a message to the Cypress Command Log

cy.dbclick() – Double-click a DOM element

cy.clear() – Clear the value of an input or textarea

cy.type() – Type into a DOM element

cy.focus() – Focus on a DOM element

cy.focused() – Get the DOM element that is currently focused

If you’d like to find more interesting commands, you can find them here.

Maybe some example?

So, we’ve installed Cypress, we wrote and executed a simple script. We will not do more complex user journeys because it would be to much as it is only a Cypress in a nutshell simple tutorial. Let’s take a look at the example of a simple user journey below.

Our user visits the TestingTraveler blog, then opens an article. When user have read an article wants to share it. Then user leaves a reply and closes the website.

When we want to write a script, it’s a good idea to plan it first. So we’re creating a simple test steps, that are presented below.

  1. User visits the website
  2. Visitor checks the page title
  3. User opens an article
  4. Visitor looks for Principles of Performance Testing
  5. User wants to share an article
  6. User comes back to article
  7. Reader leaves a reply
  8. User closes the website

As we can see it’s a simple user journey and now we will create a simple test script to cover this journey.

Test script

We will run this test in the Chrome web browser.

Let’s run the same test in Test Runner.

Congratulations! We’ve done our user journey 🙂

More info to explore

Would you like to find more information about Cypress? Then look at the official Cypress website where you can find more information about Cypress, official documentation, and much much more.

Summary

As we can see, Cypress is a really powerful End-to-end automation testing framework. If you know a JavaScript programming language it’s more than better to use that. In this tutorial, we’ve had an occasion to get some information about E2E testing and Cypress. We could also install and perform the E2E testing example using Cypress.

I hope you’ve enjoyed the article and found some inspirational information.
The next post will arrive soon 🙂

Leave a Reply

Your email address will not be published. Required fields are marked *