[Cypress] install, configure, and script Cypress for JavaScript web applications -- part2
Use Cypress to test user registration
Let’s write a test to fill out our registration form. Because we’ll be running this against a live backend, we need to generate the user’s information to avoid re-runs from trying to create new users that already exist. There are trade-offs with this approach. You should probably also clean out the application database before all of your tests start (how you accomplish this is pretty application-specific). Also, if your application requires email confirmation, I recommend you mock that on the backend and automatically set the user as confirmed during tests.
Let's create a helper method first.
support/generate.js
import {build, fake} from 'test-data-bot' const userBuilder = build('User').fields( { username: fake(f => f.internet.userName()), password: fake(f => f.internet.password()) } ) export {userBuilder}
Then, create tests:
e2e/register.js
import {userBuilder} from '../support/generate' describe('should register a new user', () => { it('should register a new user', () => { const user = userBuilder(); cy.visit('/') .getByText(/register/i) .click() .getByLabelText(/username/i) .type(user.username) .getByLabelText(/password/i) .type(user.password) .getByText(/submit/i) .click() .url() .should('eq', `${Cypress.config().baseUrl}/`) .window() .its('localStorage.token') .should('be.a', 'string') }); });
Cypress Driven Development
Because Cypress allows you to use all the developer tools you’re used to from Google Chrome, you can actually use Cypress as your main application development workflow. If you’ve ever tried to develop a feature that required you to be in a certain state you’ve probably felt the pain of repeatedly refreshing the page and clicking around to get into that state. Instead, you can use cypress to do that and developer your application entirely in Cypress.
Simulate HTTP Errors in Cypress Tests
Normally I prefer to test error states using integration or unit tests, but there are some situations where it can be really useful to mock out a response to test a specific scenario in an E2E test. Let’s use the cypress server and route commands to mock a response from our registration request to test the error state.
it(`should show an error message if there's an error registering`, () => { cy.server() cy.route({ method: 'POST', url: 'http://localhost:3000/register', status: 500, response: {}, }) cy.visit('/register') .getByText(/submit/i) .click() .getByText(/error.*try again/i) })
Test user login with Cypress
To test user login we need to have a user to login with. We could seed the database with a user and that may be the right choice for your application. In our case though we’ll just go through the registration process again and then login as the user and make the same assertions we made for registration.
import {userBuilder} from '../support/generate' describe('should register a new user', () => { it('should register a new user', () => { const user = userBuilder(); cy.visit('/') .getByText(/register/i) .click() .getByLabelText(/username/i) .type(user.username) .getByLabelText(/password/i) .type(user.password) .getByText(/submit/i) .click() // now we have new user .getByText(/logout/i) .click() // login again .getByText(/login/i) .click() .getByLabelText(/username/i) .type(user.username) .getByLabelText(/password/i) .type(user.password) .getByText(/submit/i) .click() // verify the user in localStorage .url() .should('eq', `${Cypress.config().baseUrl}/`) .window() .its('localStorage.token') .should('be.a', 'string') .getByTestId('username-display', {timeout: 500}) .should('have.text', user.username) }); });
Create a user with cy.request from Cypress
We’re duplicating a lot of logic between our registration and login tests and not getting any additional confidence, so lets reduce the duplicate logic and time in our tests using cy.request to get a user registered rather than clicking through the application to register a new user.
import {userBuilder} from '../support/generate' describe('should register a new user', () => { it('should register a new user', () => { const user = userBuilder(); // send a http request to server to create a new user cy.request({ url: 'http://localhost:3000/register', method: 'POST', body: user }) cy.visit('/') .getByText(/login/i) .click() .getByLabelText(/username/i) .type(user.username) .getByLabelText(/password/i) .type(user.password) .getByText(/submit/i) .click() // verify the user in localStorage .url() .should('eq', `${Cypress.config().baseUrl}/`) .window() .its('localStorage.token') .should('be.a', 'string') .getByTestId('username-display', {timeout: 500}) .should('have.text', user.username) }); });
Keep tests isolated and focused with custom Cypress commands
We’re going to need a newly created user for several tests so let’s move our cy.request command to register a new user into a custom Cypress command so we can use that wherever we need a new user.
Because we need to create user very often in the test, it is good to create a command to simply the code:
//support/commands.js import {userBuilder} from '../support/generate' Cypress.Commands.add('createUser', (overrides) => { const user = userBuilder(overrides); // send a http request to server to create a new user cy.request({ url: 'http://localhost:3000/register', method: 'POST', body: user }).then(response => response.body.user) })
We chain .then() call is to get the created user and pass down to the test.
describe('should register a new user', () => { it('should register a new user', () => { cy.createUser().then(user => { cy.visit('/') .getByText(/login/i) .click() .getByLabelText(/username/i) .type(user.username) .getByLabelText(/password/i) .type(user.password) .getByText(/submit/i) .click() // verify the user in localStorage .url() .should('eq', `${Cypress.config().baseUrl}/`) .window() .its('localStorage.token') .should('be.a', 'string') .getByTestId('username-display', {timeout: 500}) .should('have.text', user.username) }) }); });
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
2016-12-05 [Angular2 Router] Get activated router url
2014-12-05 [Express] Level 5: Route file