惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
Y
Y Combinator Blog
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
Martin Fowler
Martin Fowler
博客园_首页
大猫的无限游戏
大猫的无限游戏
美团技术团队
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
小众软件
小众软件
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
N
Netflix TechBlog - Medium
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
量子位
博客园 - 【当耐特】
J
Java Code Geeks
F
Fortinet All Blogs
宝玉的分享
宝玉的分享
Stack Overflow Blog
Stack Overflow Blog
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Organising Cypress at scale - Part 1: Custom Commands
Kevin Korenh · 2026-04-29 · via DEV Community

Organising Cypress at scale

When you just start using Cypress for the first time it's easy to keep everything together. You start writing a few tests, add some custom commands and so on. And this works great when you have a small test suite, but when things start to grow, so do the problems... Files get bigger, commands become hard to find, documentation is non-existant and different people start solving the same issue in their own way. This is when chaos starts to emerge.

As a consultant working with Cypress I have seen a lot of different Cypress setups. Some are very well structured, while others have become a huge mess and maintanance nightmare! But luckily the mess is fixable! You can get everything organized and arranged in a scalable way to fix all the maintanance issues! But even better is preventing it in the first place!

In this blog series I will share ways to organise your Cypress setup for larger test suites. The end goal is simple: create a setup that works with hundreds or even thousands of tests, while still providing clear oversight and remaining easy to maintain.

Part 1: Custom commands

This first part will focus on custom commands. I love using them because they are a great way to keep your tests organised and maintainable. You can use them to encapsulate repeated actions across multiple tests or to improve readability of your tests by grouping steps that are part of a single action (for example, logging in a user).

Contents:

The standard way of using custom commands

The 'standard' way to create and use custom commands in Cypress is to place them all in a single commands.js file and import that into your support file. If needed you can extend them with a cypress.d.ts file to add typing and you're ready to go!

For example:

//commands.js
Cypress.Commands.add("login", (username, password) =>{
    cy.visit('/login')
    cy.get('userNameInput').type(username)
    cy.get('passwordInput').type(password)
    cy.get('submitButton').click()
})

Cypress.Commands.add("logout", () =>{
    cy.get('logoutButton').click()
    cy.get('confirm').click()
})

Cypress.Commands.add('selectDropdown', (selector, value) =>{
    cy.get(selector).select(value)
    return cy.wrap(selector)
})

Cypress.Commands.add('anotherCommand', () =>{
    // bunch of code for command....
})

Cypress.Commands.add('moreCommands', () =>{
    // and even more code...
})
// ... hundreds of lines later...

Enter fullscreen mode Exit fullscreen mode

//cypress.d.ts
declare global {
  namespace Cypress {
    interface Chainable<Subject> {
      login(username: string, password: string): void;
      logout(): void;
      selectDropdown(selector: string, value: string): Chainable<JQuery<HTMLElement>>;
    }
  }
}

Enter fullscreen mode Exit fullscreen mode

- I'm not going into detail now on how to best write custom commands themselves, that is a whole blogpost on it's own. For now, we'll focus on organising them. If you want to know more about writing custom commands, check out the Cypress documentation here.-

This approach works great when you have a few commands. But as your test suite grows, you will keep on adding more and more commands. This file will then quickly turn into spaghetti! And don't get me wrong, I love a good bowl of carbonara, just not in my code!

As your commands file grows, you will start to lose oversight on what commands already exist. This will increase the risk of creating duplicate commands, making the problem only bigger. On top of that, it gets harder and harder to find and maintain existing commands.

A scalable approach

Luckily, there is a simple way to fix this, or even better, prevent it from happening. There is just one very important thing to remember:

Your custom commands do not have to live in the commands.js file!

Most people assume they do, but you can put them wherever you want. They don't even have to be in a single file. You can use as many files as you want. As long as everything is imported into your support file.

So how do we organise this?
Since we can use multiple files, let's do that! In a scalable setup, each custom command has its own file. That file contains everything related to that command: logic, typing, JSDoc, etc.

declare global {
  namespace Cypress {
    interface Chainable<Subject> {
      /**
       * This command will login with provided credentials
       * @input username the username used to login
       * @input password password that is needed for login
       *
       * @example cy.login('user', 'password')
       */
      login(username: string, password: string): void;
    }
  }
}

export function login(username: string, password: string): void {
  cy.visit("/login");
  cy.get("userNameInput").type(username);
  cy.get("passwordInput").type(password);
  cy.get("submitButton").click();
}

Enter fullscreen mode Exit fullscreen mode

Now, you might notice something is missing in this file. We are not registering the command with Cypress with Cypress.Commands.add()
That's intentional!
This is the only thing we won't do in the specific command file. All of our commands still need to be added to Cypress. But we can centralize this part to keep things clean and maintainable.

In our folder with the command files we will add an index.ts file. In this file we import all of our command functions and then register them in Cypress in bulk using Cypress.Commands.addAll({}).

Example:

import { loginUi } from "./loginUI";
import { loginFacebook } from "./loginFacebook";
import { loginGoogle } from "./loginGoogle";
import { loginAPI } from "./loginAPI";

Cypress.Commands.addAll({ loginUi, loginFacebook, loginGoogle, loginAPI });

Enter fullscreen mode Exit fullscreen mode

NOTE: When using child, dual and parent commands, you need to register these commands separately per command type. You can't combine them in a single Cypress.Commands.addAll() call.

We can take this a step further! Instead of placing all the files in a single folder, let's set up a folder structure to organize our commands even more.

commands/
├── login/
│   ├── index.ts
│   ├── loginAPI.ts
│   ├── loginFacebook.ts
│   ├── loginGoogle.ts
│   ├── loginUI.ts
├── dropdown/
│   ├── index.ts
│   ├── selectDropdown.ts
│   ├── getDropdownValue.ts
├── otherCommands/
│   ├── subFolder1/
│   │   ├── index.ts
│   │   ├── command1.ts
│   │   ├── command2.ts
├── subFolder2/
│   │   ├── index.ts
│   │   ├── command1.ts
│   │   ├── command2.ts
│   ├── index.ts
├── index.ts

Enter fullscreen mode Exit fullscreen mode

With this we can group the files that have a shared use. For example: login commands, dropdowns, grouped actions, mocking data, etc. This will make it even easier to find all the commands we have.
Each folder will have its own index.ts file. These files will group everything for that folder and can do two things:

  • import subfolders
  • register commands within that folder to Cypress (as we did above)
// commands/otherCommands/index.ts
import 'subFolder1'
import 'subFolder2'

// commands/index.ts
import 'login'
import 'dropdown'
import 'otherCommands'

Enter fullscreen mode Exit fullscreen mode

There is now only one thing left, and that is to go to your support folder and add this one line:
import '/commands'
And that's it. All of your commands are now neatly organised and ready to scale!

Conclusion!

Custom commands in Cypress are amazing! But as your test suite grows, organisation becomes essential.
By splitting commands into separate files and grouping them by purpose, we create a scalable structure that is easy to navigate and maintain. It gets easy to see what commands already exist and you can quickly find them when making changes. By keeping all logic for a single command in one place, you avoid spreading out related code across multiple files. This makes the use of you custom commands predictable and easy to work with at scale.

In the next part of this series we'll continue organising our Cypress setup! We will start to look at organizing our test files to make sure we can quickly see what the test is doing.