bahmutov / test-todomvc-using-app-actions

Example Cypress tests going from page objects to app actions

Home Page:https://www.cypress.io/blog/2019/01/03/stop-using-page-objects-and-start-using-app-actions/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

test-todomvc-using-app-actions

Build status renovate-app badge test-todomvc-using-app-actions ci spec dependencies

cypress version @bahmutov/cy-grep version find-cypress-specs version

Example Cypress tests going from page objects to app actions

This repo was used as an example in these blog posts:

Steps

Each step is a Git tag. You can check out particular tag, install dependencies and run application and tests. Usually it would be:

git checkout <tag>
npm install
npm start
# from another terminal
npm run cypress
  1. 00-start just TodoMVC application running at localhost:8888
  2. 01-first-test adds Cypress and first end-to-end test in spec.js
  3. 02-tests brings a lot of tests from cypress-example-todomvc to spec.js. All tests work through UI (page), sometimes using custom commands defined in cypress/support/commands.js
  4. 03-page-object drives app via page object todo.page.js
  5. 04-app-actions controls application by mostly directly calling the model instance directly to avoid always going through the page.
  6. 05-types adds TypeScript model interface so our tests know the app actions they can trigger
  7. 06-split splits all tests into multiple spec files.
  8. 07-grep added tags and the @bahmutov/cy-grep plugin.
  9. 08-tags tags the features and creates the ways to run CircleCI and GitHub Actions by selecting the tags to run.
  10. 09-regression tags some tests as @regression and updates the CI workflows.
  11. 10-typescript shows all specs written in TypeScript and passing the static types check.
  12. 11-config-ts moves cypress.config.js to TypeScript

Tests

All tests are in folder cypress/integration. Common test settings are in cypress.json file.

Workflows

This repo shows how to use manual workflows to select the tests to run.

Starting a test run from GitHub UI

Blog posts

IntelliSense

In the application code js/app.jsx we set window.model = ... to expose our model instance for app actions to work. If we use TypeScript check via // @ts-check directive, we need to "tell" TS compiler that there is a new property model on the global window object. We can do this by writing file cypress/integration/model.d.ts with interface definition for TodoModel and window update. Something like this

interface TodoModel {
  todos: unknown[]
  addTodo(...todos: string[])
  // more methods
}
// During tests there we set "window.model" property
// now cy.window() returns Window instance with
// the "model" property that has TodoModel interface
interface Window {
  model: TodoModel
}

From our JavaScript spec files, we need to load this model.d.ts file, and we can do this using special /// <reference> comment.

// type definitions for Cypress object "cy"
/// <reference types="cypress" />
// type definition for out TodoModel
/// <reference path='./model.d.ts' />
// @ts-check

Now whenever you use cy.window().its('model') command, IntelliSense will correctly suggest the "model" property.

Model property

And you can invoke the right methods on the window.model

model properties

Read more about intelligent code completion in Cypress.

Spec dependencies

Using spec-change utility we update the dependencies between the Cypress spec files and save them into deps.json. See the spec-dependencies workflow

Small print

Author: Gleb Bahmutov <gleb.bahmutov@gmail.com> © 2022

License: MIT - do anything with the code, but don't blame me if it does not work.

Support: if you find any problems with this module, email / tweet / open issue on Github

MIT License

Copyright (c) 2022 Gleb Bahmutov <gleb.bahmutov@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Example Cypress tests going from page objects to app actions

https://www.cypress.io/blog/2019/01/03/stop-using-page-objects-and-start-using-app-actions/


Languages

Language:TypeScript 63.1%Language:JavaScript 33.9%Language:HTML 3.0%