Cypress Skills Ladder

A list of topics I would expect someone who is applying to write Cypress tests to know

Imagine you are trying to get a job as a test engineer with a focus on writing Cypress tests. What do you need to know? Here is what I would suggest you learn.

Tip: when applying to an open position, you do NOT have to know 100% of the list below. I would hire anyone who has experience with most points below, and who has a plan to learn the rest. Each skill has one or two more links to the study materials I recommend.

Skills

  • writing Cypress tests 1, 2
  • refactor and split a long Cypress test into shorter ones 1
  • organize multiple Cypress tests by topic and feature 1
  • passing the values to the test runner through environment variables or command line arguments 1
  • selecting tests to run using command line arguments and cypress.json settings 1
  • the difference between the Cypress.env and the Cypress.config objects 1, 2, 3
  • how to set the baseUrl in the test, in the cypress.json, via command line arguments, or via environment variables 1
  • authentication using basic auth 1
  • authentication using cookies 1, 2
  • writing custom commands to wrap the common authentication code 1
  • controlling the viewport size 1, 2, 3
  • using test retries 1
  • writing custom commands to select elements following the Cypress' best practices, like using a data test ID attribute 1, 2
  • installing and using additional Cypress plugins, like cypress-real-events, cypress-grep, cypress-data-session, cypress-recurse, cypress-axe, and others
  • writing Node.js code to run in the server process to be called via cy.task. For example, reading data from a database to confirm the data displayed on the page 1, 2
  • debugging the test flake, making the tests wait for the app using the built-in retry-ability mechanism 1
  • observing the calls the application makes using cy.intercept 1, 2, 3
  • stubbing the network calls the application makes using cy.intercept, modifying the response, or using a fixture file 1, 2, 3
  • loading and using fixtures using the cy.fixture command 1, 2, 3
  • making calls from the tests to the REST endpoints using cy.request 1, 2, 2
  • making calls from the tests to the GraphQL endpoints using cy.request 1
  • setting up IntelliSense and using Cypress types to ensure the specs use the commands correctly 1, 2
  • recording the tests on Cypress Dashboard 1, 2
  • running Cypress on CircleCI using Cypress CircleCI Orb running Cypress tests in parallel on CircleCI 1, 2, 3
  • running Cypress using its GitHub Action 1, 2, 3
  • accessing the data exposed by the application through the “window” object 1,2
  • calling the application code from the test (called “app actions”) 1, 2
  • setting up 3rd party visual testing using a Cypress plugin, following the visual testing guide 1
  • instrumenting the application source code and using the Cypress code coverage plugin to find the features not currently covered by any tests 1, 2
  • writing API tests using Cypress, see the information at cy-api plugin 1, 2
  • generating the Cypress dynamically from the fixture files 1, 2, 3
  • writing React component tests using Cypress component testing feature 1, 2

Good news

The above list might seem long. But here are two things to remember:

  1. It gives you an idea of gaps in your knowledge, so you can fill them quickly
  2. All these topics are documented really really well. Read the links next to each topic. See the Cypress docs, Cypress examples, work through Cypress Basics Workshop, read my posts about Cypress, and watch my Cypress videos to learn everything there is to know. Even better: you can search across all this knowledge in a single place at cypress.tips/search. Start with free Cypress courses, then fill the gaps by searching.

JavaScript resources

To effectively code Cypress tests, you need to know JavaScript. I recommend the following free resources:

I have a blog post JavaScript books with additional links

You can also learn JavaScript by watching these videos:

Update 1: Interactive skills form

I have put the above list of skills as a form at https://cypress.tips/skills. You can use this form for self-evaluation or when interviewing a candidate for a job that requires writing Cypress tests. Tip: use the "Copy to clipboard" button to get the skills report as plain text!

The skills interactive form and the text report

Watch the skills form explained in the video below