What you’ll learn
- How to start testing a new project in Cypress.
- What passing and failing tests look like.
- Testing web navigation, DOM querying, and writing assertions.
Add a test file
Assuming you’ve successfully installed the Test Runner and opened the Cypress app, now it’s time to write our first test. We’re going to:
- Create a
sample_spec.js
file. - Watch Cypress update our list of specs.
- Launch Cypress in interactive mode.
Let’s create a new file in the cypress/integration
folder that was created for us:
touch {your_project}/cypress/integration/sample_spec.js
Once we’ve created that file, we should see the Cypress Test Runner immediately display it in the list of Integration Tests. Cypress monitors your spec files for any changes and automatically displays any changes.
Even though we haven’t written any tests yet - that’s okay - let’s click on sample_spec.js
and watch Cypress launch your browser.
Cypress opens the test in a browser installed on your system. You can read more about how we do this in Launching Browsers.
We are now officially in the Cypress Test Runner. This is where we will spend the majority of your time testing.
Notice Cypress displays the message that it couldn’t find any tests. This is normal - we haven’t written any tests! Sometimes you’ll also see this message if there was an error parsing your test file. You can always open your Dev Tools to inspect the Console for any syntax or parsing errors that prevented Cypress from reading your tests.
Write a simple test
Now it’s time to write our first test. We’re going to:
- Write our first passing test.
- Write our first failing test.
- Watch Cypress reload in real time.
As we continue to save our new test file we’ll see the browser auto reloading in real time.
Open up your favorite IDE and add the code below to our sample_spec.js
test file.
describe('My First Test', function() { it('Does not do much!', function() { expect(true).to.equal(true) }) })
Once you save this file you should see the browser reload.
Although it doesn’t do anything useful, this is our first passing test! ✅
Over in the Command Log you’ll see Cypress display the suite, the test and your first assertion (which should be passing in green).
Notice Cypress displays a message about this being the default page on the righthand side. Cypress assumes you’ll want to go out and visit a URL on the internet - but it can also work just fine without that.
Now let’s write our first failing test.
describe('My First Test', function() { it('Does not do much!', function() { expect(true).to.equal(false) }) })
Once you save again, you’ll see Cypress display the failing test in red since true
does not equal false
.
Cypress provides a nice Test Runner that gives you a visual structure of suites, tests, and assertions. Soon you’ll also see commands, page events, network requests, and more.
What are describe, it, and expect?All of these functions come from Bundled Tools that Cypress bakes in.
Cypress builds on these popular tools and frameworks that you hopefully already have some familiarity and knowledge of. If not, that’s okay too.
Using ESlint?Check out our Cypress ESLint plugin.
Write a real test
A solid test generally covers 3 phases:
- Set up the application state.
- Take an action.
- Make an assertion about the resulting application state.
You might also see this phrased as “Given, When, Then”, or “Arrange, Act, Assert”. The idea is simple: first you put the application into a specific state, then you take some action in the application that causes it to change, and finally you check the resulting application state.
Today, we’ll take a narrow view of these steps and map them cleanly to Cypress commands:
- Visit a web page.
- Query for an element.
- Interact with that element.
- Assert about the content on the page.
Step 1: Visit a page
First, let’s visit a web page. We will visit our Kitchen Sink application in this example so that you can try Cypress out without needing to worry about finding a page to test.
Using cy.visit()
is easy, we just pass it the URL we want to visit. Let’s replace our previous test with the one below that actually visits a page:
describe('My First Test', function() { it('Visits the Kitchen Sink', function() { cy.visit('https://example.cypress.io') }) })
Save the file and switch back over to the Cypress Test Runner. You might notice a few things:
- The Command Log now shows the new
VISIT
action. - The Kitchen Sink application has been loaded into the App Preview pane.
- The test is green, even though we made no assertions.
- The
VISIT
displays a blue pending state until the page finishes loading.
Had this request come back with a non 2xx
status code such as 404
or 500
, or if there was a JavaScript error in the application’s code, the test would have failed.
Only Test Apps You ControlAlthough in this guide we are testing our example application:
https://example.cypress.io
- you shouldn’t test applications you don’t control. Why?
- They are liable to change at any moment which will break tests.
- They may do A/B testing which makes it impossible to get consistent results.
- They may detect you are a script and block your access (Google does this).
- They may have security features enabled which prevent Cypress from working.
The point of Cypress is to be a tool you use every day to build and test your own applications.
Cypress is not a general purpose web automation tool. It is poorly suited for scripting live, production websites not under your control.
Step 2: Query for an element
Now that we’ve got a page loaded, we need to take some action on it. Why don’t we click a link on the page? Sounds easy enough, let’s go look for one we like… how about type
?
To find this element by its contents, we’ll use cy.contains()
.
Let’s add it to our test and see what happens:
describe('My First Test', function() { it('finds the content "type"', function() { cy.visit('https://example.cypress.io') cy.contains('type') }) })
Our test should now display CONTAINS
in the Command Log and still be green.
Even without adding an assertion, we know that everything is okay! This is because many of Cypress’ commands are built to fail if they don’t find what they’re expecting to find. This is known as a Default Assertion.
To verify this, replace type
with something not on the page, like hype
. You’ll notice the test goes red, but only after about 4 seconds!
Can you see what Cypress is doing under the hood? It’s automatically waiting and retrying because it expects the content to eventually be found in the DOM. It doesn’t immediately fail!
Error MessagesWe’ve taken care at Cypress to write hundreds of custom error messages that attempt to explain in simple terms what went wrong. In this case Cypress timed out retrying to find the content:
hype
within the entire page.
Before we add another command - let’s get this test back to passing. Replace hype
with type
.
Step 3: Click an element
Ok, now we want to click on the link we found. How do we do that? You could almost guess this one: just add a .click()
command to the end of the previous command, like so:
describe('My First Test', function() { it('clicks the link "type"', function() { cy.visit('https://example.cypress.io') cy.contains('type').click() }) })
You can almost read it like a little story! Cypress calls this “chaining” and we chain together commands to build tests that really express what the app does in a declarative way.
Also note that the App Preview pane has updated further after the click, following the link and showing the destination page:
Now we can assert something about this new page!
Seeing IntelliSense in your spec files is as easy as adding a single special comment line. Read about Intelligent Code Completion.
Step 4: Make an assertion
Let’s make an assertion about something on the new page we clicked into. Perhaps we’d like to make sure the new URL is the expected URL. We can do that by looking up the URL and chaining an assertion to it with .should()
.
Here’s what that looks like:
describe('My First Test', function() { it('clicking "type" navigates to a new url', function() { cy.visit('https://example.cypress.io') cy.contains('type').click() // Should be on a new URL which includes '/commands/actions' cy.url().should('include', '/commands/actions') }) })
Adding more commands and assertions
We are not limited to a single interaction and assertion in a given test. In fact, many interactions in an application may require multiple steps and are likely to change your application state in more than one way.
We can continue the interactions and assertions in this test by adding another chain to interact with and verify the behavior of elements on this new page.
We can use cy.get()
to select an element based on a CSS class. Then we can use the .type()
command to enter text into the selected input. Finally, we can verify that the value of the input reflects the text that was typed with another .should()
.
describe('My First Test', function() { it('Gets, types and asserts', function() { cy.visit('https://example.cypress.io') cy.contains('type').click() // Should be on a new URL which includes '/commands/actions' cy.url().should('include', '/commands/actions') // Get an input, type into it and verify that the value has been updated cy.get('.action-email') .type('[email protected]') .should('have.value', '[email protected]') }) })
And there you have it: a simple test in Cypress that visits a page, finds and clicks a link, verifies the URL and then verifies the behavior of an element on the new page. If we read it out loud, it might sound like:
- Visit:
https://example.cypress.io
- Find the element with content:
type
- Click on it
- Get the URL
- Assert it includes:
/commands/actions
- Get the input with the
.actions-email
class- Type `[email protected]` into the input
- Assert the input reflects the new value
Or in the Given, When, Then syntax:
- Given a user visits
https://example.cypress.io
- When they click the link labeled
type
- And they type “[email protected]“ into the
.actions-email
input- Then the URL should include
/commands/actions
- And the
.actions-email
input has “[email protected]“ as its value
Even your non-technical collaborators can appreciate the way this reads!
And hey, this is a very clean test! We didn’t have to say anything about how things work, just that we’d like to verify a particular series of events and outcomes.
Page TransitionsWorth noting is that this test transitioned across two different pages.
- The initial
cy.visit()
- The
.click()
to a new pageCypress automatically detects things like a
page transition event
and will automatically halt running commands until the next page has finished loading.Had the next page not finished its loading phase, Cypress would have ended the test and presented an error.
Under the hood - this means you don’t have to worry about commands accidentally running against a stale page, nor do you have to worry about running commands against a partially loaded page.
We mentioned previously that Cypress waited 4 seconds before timing out finding a DOM element - but in this case, when Cypress detects a
page transition event
it automatically increases the timeout to 60 seconds for the singlePAGE LOAD
event.In other words, based on the commands and the events happening, Cypress automatically alters its expected timeouts to match web application behavior.
These various timeouts are defined in the Configuration document.
Debugging
Cypress comes with a host of debugging tools to help you understand a test.
We give you the ability to:
- Travel back in time to each command’s snapshot.
- See special
page events
that happened. - Receive additional output about each command.
- Step forward / backward between multiple command snapshots.
- Pause commands and step through them iteratively.
- Visualize when hidden or multiple elements are found.
Let’s see some of this in action using our existing test code.
Time travel
Take your mouse and hover over the CONTAINS
command in the Command Log.
Do you see what happened?
Cypress automatically traveled back in time to a snapshot of when that command resolved. Additionally, since cy.contains()
finds DOM elements on the page, Cypress also highlights the element and scrolls it into view (to the top of the page).
Now if you remember at the end of the test we ended up on a different URL:
https://example.cypress.io/commands/actions
But as we hover over the CONTAINS
, Cypress reverts back to the URL that was present when our snapshot was taken.
Snapshots
Commands are also interactive. Go ahead and click on the CLICK
command.
Notice it highlights in purple. This did three things worth noting…
1. Pinned snapshots
We have now pinned this snapshot. Hovering over other commands will not revert to them. This gives us a chance to manually inspect the DOM of our application under test at the time the snapshot was taken.
2. Event hitbox
Since .click()
is an action command, that means we also see a red hitbox at the coordinates the event took place.
3. Snapshot menu panel
There is also a new menu panel. Some commands (like action commands) will take multiple snapshots: before and after. We can now cycle through these.
The before snapshot is taken prior to the click event firing. The after snapshot is taken immediately after the click event. Although this click event caused our browser to load a new page, it’s not an instantaneous transition. Depending on how fast your page loaded, you may still see the same page, or a blank screen as the page is unloading and in transition.
When a command causes an immediate visual change in our application, cycling between before and after will update our snapshot. We can see this in action by clicking the TYPE
command in the Command Log. Now, clicking before will show us the input in a default state, showing the placeholder text. Click after will show us what the input looks like when the TYPE
command has completed.
Page events
Notice there is also a funny looking Log called: (PAGE LOAD)
followed by another entry for (NEW URL)
. Neither of these was a command that we issued - rather Cypress itself will log out important events from your application when they occur. Notice these look different (they are gray and without a number).
Cypress logs out page events for:
- Network XHR Requests
- URL hash changes
- Page Loads
- Form Submissions
Console output
Besides Commands being interactive, they also output additional debugging information to your console.
Open up your Dev Tools and click on the GET
for the .action-email
class selector.
We can see Cypress output additional information in the console:
- Command (that was issued)
- Yielded (what was returned by this command)
- Elements (the number of elements found)
- Selector (the argument we used)
We can even expand what was returned and inspect each individual element or even right click and inspect them in the Elements panel!
Special commands
In addition to having a helpful UI, there are also special commands dedicated to the task of debugging.
For instance there is:
Let’s add a cy.pause()
to our test code and see what happens.
describe('My First Test', function() { it('clicking "type" shows the right headings', function() { cy.visit('https://example.cypress.io') cy.pause() cy.contains('type').click() // Should be on a new URL which includes '/commands/actions' cy.url().should('include', '/commands/actions') // Get an input, type into it and verify that the value has been updated cy.get('.action-email') .type('[email protected]') .should('have.value', '[email protected]') }) })
Now Cypress provides us a UI (similar to debugger) to step forward through each command.
In action
Next steps
- Start testing your app.
- Set up intelligent code completion for Cypress commands and assertions.
- Search Cypress’s documentation to quickly find what you need.