-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathplugins.json
More file actions
1320 lines (1320 loc) · 53.7 KB
/
Copy pathplugins.json
File metadata and controls
1320 lines (1320 loc) · 53.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"plugins": [
{
"name": "Preprocessors",
"description": "A preprocessor is the plugin responsible for preparing a support file or a test file for the browser. By default, Cypress comes packaged with webpack preprocessor already installed. Read the <a target=\"_blank\" href=\"/api/node-events/preprocessors-api\">Preprocessors API docs</a> to learn more.",
"plugins": [
{
"name": "Webpack",
"description": "Watches and bundles your spec files via webpack.",
"link": "https://github.com/cypress-io/cypress/tree/develop/npm/webpack-preprocessor",
"keywords": ["webpack", "preprocessor", "bundler"],
"badge": "official",
"npm": "@cypress/webpack-preprocessor"
},
{
"name": "@bahmutov/cypress-esbuild-preprocessor",
"description": "Bundle Cypress specs using esbuild.",
"link": "https://github.com/bahmutov/cypress-esbuild-preprocessor",
"keywords": ["esbuild", "preprocessor", "bundler"],
"badge": "community"
},
{
"name": "Cucumber",
"description": "Run Cucumber/Gherkin-syntax specs with Cypress.",
"link": "https://github.com/badeball/cypress-cucumber-preprocessor",
"keywords": [
"file-watcher",
"cucumber",
"bdd",
"gherkin",
"preprocessor"
],
"badge": "community",
"npm": "@badeball/cypress-cucumber-preprocessor"
},
{
"name": "cypress-markdown-preprocessor",
"description": "Cypress preprocessor for extracting tests from Markdown files.",
"link": "https://github.com/bahmutov/cypress-markdown-preprocessor",
"keywords": ["markdown", "preprocessor", "docs"],
"badge": "community"
},
{
"name": "cypress-vite",
"description": "Cypress preprocessor for running specs using Vite.",
"link": "https://github.com/mammadataei/cypress-vite",
"keywords": ["vite", "preprocessor", "bundler"],
"badge": "community"
}
]
},
{
"name": "Component Testing",
"description": "Loading and mounting components from various frameworks.",
"plugins": [
{
"name": "Cypress Angular",
"description": "Test Angular components using Cypress Test Runner. This package is bundled with the cypress package and does not need to be installed separately, unless a specific version is desired. See the <a target=\"_blank\" href=\"/app/component-testing/angular/overview\">Angular Component Testing Docs</a> for mounting Angular components.",
"link": "https://github.com/cypress-io/cypress/tree/develop/npm/angular",
"keywords": ["component", "angular", "component-testing", "mount"],
"badge": "official",
"npm": "@cypress/angular"
},
{
"name": "Cypress React",
"description": "Test React components using Cypress Test Runner. This package is bundled with the cypress package and does not need to be installed separately, unless a specific version is desired. See the <a target=\"_blank\" href=\"/app/component-testing/react/overview\">React Component Testing Docs</a> for mounting React components.",
"link": "https://github.com/cypress-io/cypress/tree/develop/npm/react",
"keywords": ["component", "react", "component-testing", "mount"],
"badge": "official",
"npm": "@cypress/react"
},
{
"name": "Cypress Svelte",
"description": "Test Svelte components using Cypress Test Runner. This package is bundled with the cypress package and should not need to be installed separately. See the <a target=\"_blank\" href=\"/app/component-testing/svelte/overview\">Svelte Component Testing Docs</a> for mounting Svelte components.",
"link": "https://github.com/cypress-io/cypress/tree/develop/npm/svelte",
"keywords": ["component", "svelte", "component-testing", "mount"],
"badge": "official",
"npm": "@cypress/svelte"
},
{
"name": "Cypress Vue",
"description": "Test Vue 3 components using Cypress Test Runner. This package is bundled with the cypress package and should not need to be installed separately. See the <a target=\"_blank\" href=\"/app/component-testing/vue/overview\">Vue Component Testing Docs</a> for mounting Vue components.",
"link": "https://github.com/cypress-io/cypress/tree/develop/npm/vue",
"keywords": [
"component",
"vue",
"vue.js",
"component-testing",
"mount"
],
"badge": "official",
"npm": "@cypress/vue"
},
{
"name": "cypress-ct-custom-devserver",
"description": "Simplified API for creating custom dev servers for Cypress.",
"link": "https://github.com/fochlac/cypress-ct-custom-devserver",
"keywords": ["component", "buildtool", "devserver"],
"badge": "community"
},
{
"name": "cypress-devserver-esbuild",
"description": "Build Cypress Component Tests using esbuild.",
"link": "https://github.com/fochlac/cypress-devserver-esbuild",
"keywords": ["component", "esbuild", "devserver"],
"badge": "community"
},
{
"name": "cypress-rspack-dev-server",
"description": "Build Cypress Component Tests using Rspack.",
"link": "https://github.com/th3fallen/cypress-rspack-dev-server",
"keywords": ["component", "Rspack", "dev-server"],
"badge": "community"
},
{
"name": "@cypress/vite-dev-server",
"description": "Official Vite dev server for Cypress Component Testing.",
"link": "https://github.com/cypress-io/cypress/tree/develop/npm/vite-dev-server",
"keywords": ["component", "component-testing", "vite", "dev-server"],
"badge": "official",
"npm": "@cypress/vite-dev-server"
},
{
"name": "@cypress/webpack-dev-server",
"description": "Official webpack dev server for Cypress Component Testing.",
"link": "https://github.com/cypress-io/cypress/tree/develop/npm/webpack-dev-server",
"keywords": [
"component",
"component-testing",
"webpack",
"dev-server"
],
"badge": "official",
"npm": "@cypress/webpack-dev-server"
}
]
},
{
"name": "AI Tooling",
"description": "Connect AI coding assistants and agents to Cypress so they write, understand, and debug tests more reliably. See our <a target=\"_blank\" href=\"/app/tooling/ai-skills\">Cypress AI Skills</a> guide to get started.",
"plugins": [
{
"name": "Cloud MCP",
"description": "Model Context Protocol server that connects AI coding assistants directly to Cypress Cloud, giving them access to your application's health and test stability data.",
"link": "/cloud/integrations/cloud-mcp",
"keywords": ["ai", "mcp", "cloud", "agents"],
"badge": "official"
},
{
"name": "cypress-author",
"description": "AI skill that improves how AI tools create, update, and fix Cypress end-to-end and component tests.",
"link": "https://github.com/cypress-io/ai-toolkit/tree/main/skills/cypress-author",
"keywords": ["ai", "skill", "authoring", "agents"],
"badge": "official"
},
{
"name": "cypress-explain",
"description": "AI skill that helps AI tools understand, describe, and critique existing Cypress tests, surfacing weak selectors and flaky assertions.",
"link": "https://github.com/cypress-io/ai-toolkit/tree/main/skills/cypress-explain",
"keywords": ["ai", "skill", "review", "agents"],
"badge": "official"
},
{
"name": "cypress-docs",
"description": "AI skill that lets agents research and retrieve Cypress documentation more efficiently and reliably.",
"link": "https://github.com/cypress-io/ai-toolkit/tree/main/skills/cypress-docs",
"keywords": ["ai", "skill", "docs", "agents"],
"badge": "official"
}
]
},
{
"name": "Continuous Integration & Parallelization",
"description": "Run Cypress in CI and split work across machines to keep test runs fast.",
"plugins": [
{
"name": "CircleCI Cypress Orb",
"description": "Cypress Orb for CircleCI configuration to correctly install, cache and run Cypress.io tests in CircleCI with very little effort.",
"link": "https://github.com/cypress-io/circleci-orb",
"keywords": ["continuous-integration", "circleci", "orb", "ci"],
"badge": "official"
},
{
"name": "Cypress GitHub Actions",
"description": "GitHub Action for running Cypress end-to-end and component tests. Includes npm, pnpm and Yarn installation, custom caching and lots of configuration options.",
"link": "https://github.com/cypress-io/github-action",
"keywords": [
"continuous-integration",
"github-actions",
"ci",
"github",
"action"
],
"badge": "official"
},
{
"name": "Docker",
"description": "Docker images providing all the dependencies to run Cypress in CI including browsers.",
"link": "https://github.com/cypress-io/cypress-docker-images",
"keywords": [
"docker",
"continuous-integration",
"ci",
"image",
"container"
],
"badge": "official"
},
{
"name": "cypress-load-balancer",
"description": "A simple load balancer for Cypress tests. Use this for parallelizing jobs across CI/CD solutions or locally in separate processes.",
"link": "https://github.com/hammzj/cypress-load-balancer/",
"keywords": [
"ci",
"continuous-integration",
"load-balancer",
"parallel",
"sharding"
],
"badge": "community"
},
{
"name": "cypress-repeat",
"description": "Run Cypress multiple times in a row, great at finding test flake.",
"link": "https://github.com/bahmutov/cypress-repeat",
"badge": "community",
"keywords": ["cli", "ci", "repeat", "retry", "flake"]
},
{
"name": "cypress-split",
"description": "Split Cypress specs across parallel CI machines for speed.",
"link": "https://github.com/bahmutov/cypress-split",
"keywords": [
"parallel",
"sharding",
"split",
"ci",
"continuous-integration"
],
"badge": "community"
}
]
},
{
"name": "Developer Tooling",
"description": "Improve the day-to-day developer experience with editor support, linting, type definitions, and test-authoring helpers.",
"plugins": [
{
"name": "Cypress Chrome Recorder",
"description": "Command-line tool to convert Google Chrome DevTools Recorder exports into Cypress tests.",
"link": "https://github.com/cypress-io/cypress-chrome-recorder",
"keywords": ["recording", "chrome", "automation", "devtools"],
"badge": "official",
"npm": "@cypress/chrome-recorder"
},
{
"name": "Cypress Chrome Recorder Extension",
"description": "Chrome DevTools extension that exports Cypress tests directly from the Recorder panel, with no CLI needed.",
"link": "https://chrome.google.com/webstore/detail/cypress-chrome-recorder/fellcphjglholofndfmmjmheedhomgin",
"keywords": ["recording", "chrome", "extension", "devtools"],
"badge": "official"
},
{
"name": "eslint-plugin-cypress",
"description": "Official ESLint plugin that configures Cypress and Mocha globals and enforces best-practice rules to prevent flaky tests and common Cypress anti-patterns, catching issues in-editor before CI runs.",
"link": "https://github.com/cypress-io/eslint-plugin-cypress",
"keywords": ["eslint", "linting", "lint", "best-practices"],
"badge": "official"
},
{
"name": "TypeScript",
"description": "Official TypeScript definitions for the Cypress API.",
"link": "https://github.com/cypress-io/cypress/tree/develop/cli/types",
"keywords": ["typescript", "types", "intellisense", "definitions"],
"badge": "official"
},
{
"name": "cypress-codegen",
"description": "A Cypress plugin which automatically adds and enables IntelliSense for custom commands",
"link": "https://github.com/ExpediaGroup/cypress-codegen",
"keywords": ["commands", "development", "codegen"],
"badge": "community"
},
{
"name": "cypress-runner-themes",
"description": "Alternative themes for the Cypress Test Runner.",
"link": "https://github.com/dingraham/cypress-runner-themes",
"keywords": ["theme", "dark", "light", "colorblind"],
"badge": "community"
},
{
"name": "cypress-voice-plugin",
"description": "Cypress plugin to announce spec result and time in Cypress Test Runner.",
"link": "https://github.com/dennisbergevin/cypress-voice-plugin",
"keywords": ["auditory", "ui", "results", "duration"],
"badge": "community"
},
{
"name": "cypress-watch-and-reload",
"description": "Reloads Cypress when one of the watched files changes.",
"link": "https://github.com/bahmutov/cypress-watch-and-reload",
"keywords": ["file-watcher", "reload", "watch", "development"],
"badge": "community"
},
{
"name": "vscode-cy-helper",
"description": "Visual Studio Code extension for cypress and cucumber preprocessor.",
"link": "https://marketplace.visualstudio.com/items?itemName=Shelex.vscode-cy-helper",
"keywords": ["vscode", "extension", "intellisense"],
"badge": "community"
},
{
"name": "cypress-html-validate",
"description": "Validate HTML markup in your Cypress tests using html-validate.",
"link": "https://gitlab.com/html-validate/cypress-html-validate",
"keywords": ["html", "html-validate", "validation", "linting"],
"badge": "community"
}
]
},
{
"name": "Test Selection & Execution",
"description": "Filter, tag, re-run, and control which tests execute and how failures are handled.",
"plugins": [
{
"name": "@cypress/grep",
"description": "Filter tests using its title or tags.",
"link": "https://github.com/cypress-io/cypress/tree/develop/npm/grep",
"keywords": ["grep", "tags", "filter", "test-selection"],
"badge": "official"
},
{
"name": "cypress-cli-select",
"description": "Cypress interactive cli prompt to select and run specific specs, tests or tags",
"link": "https://github.com/dennisbergevin/cypress-cli-select",
"keywords": ["grep", "cli", "tags"],
"badge": "community"
},
{
"name": "cypress-conditional-tags",
"description": "Access runtime tags (CLI) and test tags (config) inside Cypress test logic to build context-aware conditional behavior.",
"link": "https://github.com/JaydipManiya/cypress-conditional-tags",
"keywords": [
"tags",
"cli",
"conditional",
"filter",
"test-selection"
],
"badge": "community"
},
{
"name": "cypress-expect",
"description": "Cypress CLI wrapper where you can specify the total number of expected tests.",
"link": "https://github.com/bahmutov/cypress-expect",
"keywords": ["cli", "assertions", "test-count"],
"badge": "community"
},
{
"name": "cypress-fail-fast",
"description": "Enables fail fast in Cypress, skipping the rest of tests on first failure.",
"link": "https://github.com/javierbrea/cypress-fail-fast",
"keywords": ["fail-fast", "failure", "skip", "config"],
"badge": "community"
},
{
"name": "cypress-fail-on-console-error",
"description": "Fail cypress test on console error.",
"link": "https://github.com/nils-hoyer/cypress-fail-on-console-error",
"keywords": ["console", "error", "fail"],
"badge": "community"
},
{
"name": "cypress-fail-on-network-error",
"description": "Fail cypress test on network error.",
"link": "https://github.com/nils-hoyer/cypress-fail-on-network-error",
"keywords": ["network", "error", "fail"],
"badge": "community"
},
{
"name": "cypress-plugin-grep-boxes",
"description": "A companion Cypress plugin for `cy-grep` that allows users to run specific test(s) in open mode.",
"link": "https://github.com/dennisbergevin/cypress-plugin-grep-boxes",
"keywords": ["grep", "ui", "tags", "filter"],
"badge": "community"
},
{
"name": "cypress-plugin-last-failed",
"description": "A companion Cypress plugin for `cy-grep` that re-runs the last failed test(s).",
"link": "https://github.com/dennisbergevin/cypress-plugin-last-failed",
"keywords": ["grep", "ui", "failure", "results"],
"badge": "community"
},
{
"name": "cypress-each",
"description": "Adds describe.each and it.each for data-driven Cypress tests.",
"link": "https://github.com/bahmutov/cypress-each",
"keywords": [
"each",
"data-driven",
"describe-each",
"it-each",
"test-selection"
],
"badge": "community"
}
]
},
{
"name": "Test Data & Fixtures",
"description": "Generate and manage realistic test data and fixtures.",
"plugins": [
{
"name": "cypress-fixture-faker",
"description": "A Cypress plugin that enables faker functions in json fixture files.",
"link": "https://github.com/Zaista/cypress-fixture-faker",
"keywords": [
"fixture",
"faker",
"test-data",
"fixtures",
"mock-data"
],
"badge": "community"
},
{
"name": "cypress-geolocation-locale-faker",
"description": "A Cypress plugin to mock geolocation, timezone, language, and locale settings for end-to-end testing. Useful for simulating user environments worldwide.",
"link": "https://github.com/pradapjackie/cypress-geolocation-locale-faker",
"keywords": [
"geolocation",
"timezone",
"locale",
"language",
"plugin",
"testing"
],
"badge": "community"
},
{
"name": "cypress-test-data-generator",
"description": "Generate realistic test data for Cypress tests using Faker.js.",
"link": "https://github.com/khawjaahmad/cypress-test-data-generator",
"keywords": ["data-generation", "faker", "testing", "test-data"],
"badge": "community"
}
]
},
{
"name": "Custom Commands",
"description": "Read the <a target=\"_blank\" href=\"/api/cypress-api/custom-commands\">Custom Commands</a> and <a target=\"_blank\" href=\"/api/cypress-api/custom-queries\">Custom Query</a> documentation to learn more.",
"plugins": [
{
"name": "Puppeteer",
"description": "Utilize Puppeteer's browser API with one command within Cypress.",
"link": "https://github.com/cypress-io/cypress/tree/develop/npm/puppeteer",
"keywords": ["puppeteer", "multi-tab", "commands", "browser", "cdp"],
"badge": "official",
"npm": "@cypress/puppeteer"
},
{
"name": "@testing-library/cypress",
"description": "🐅 Simple and complete custom Cypress commands and utilities that encourage good testing practices.",
"link": "https://github.com/testing-library/cypress-testing-library",
"keywords": [
"testing-library",
"dom-testing-library",
"react-testing-library"
],
"badge": "community"
},
{
"name": "cypress-wait-until",
"description": "Add the Cypress waiting power to virtually everything 🎉",
"link": "https://github.com/NoriSte/cypress-wait-until",
"keywords": [
"commands",
"wait",
"wait-until",
"recursive-promise",
"check-async-value",
"check-value"
],
"badge": "community"
},
{
"name": "cy-spok",
"description": "Adds assertions from Spok library for easy schema and value validations.",
"link": "https://github.com/bahmutov/cy-spok",
"keywords": ["assertions", "schema", "validation", "commands"],
"badge": "community"
},
{
"name": "cy-verify-downloads",
"description": "Cypress custom command to wait and verify that file was downloaded.",
"link": "https://github.com/elaichenkov/cy-verify-downloads",
"keywords": ["commands", "assertions", "wait", "verify", "download"],
"badge": "community"
},
{
"name": "cypress-downloadfile",
"description": "A custom command to download different kinds of files and store them on your local machine",
"link": "https://github.com/Xvier/cypress-downloadfile",
"keywords": ["commands", "downloading", "download", "files"],
"badge": "community"
},
{
"name": "cypress-env",
"description": "This utility simplifies the process of handling different environments (such as test, staging, and production) by providing environment-specific settings in your Cypress tests.",
"link": "https://github.com/alecmestroni/cypress-env",
"keywords": [
"multi",
"environment",
"env",
"multi-environment",
"test",
"stage",
"prod"
],
"badge": "community"
},
{
"name": "cypress-firebase",
"description": "Custom commands for Firebase including Authentication and Database communication (both Real Time Database and Firestore).",
"link": "https://github.com/prescottprue/cypress-firebase",
"keywords": [
"firebase",
"database",
"commands",
"authentication",
"firestore"
],
"badge": "community"
},
{
"name": "cypress-if",
"description": "Easy conditional if-else logic for your Cypress tests.",
"link": "https://github.com/bahmutov/cypress-if",
"keywords": ["commands", "conditional", "if-else", "control-flow"],
"badge": "community"
},
{
"name": "cypress-plugin-steps",
"description": "Helper utility for annotating your tests with steps. Adds cy.step() and cy.section() commands",
"link": "https://github.com/filiphric/cypress-plugin-steps",
"keywords": ["step", "section", "readability"],
"badge": "community"
},
{
"name": "cypress-recurse",
"description": "A way to re-run Cypress commands until a predicate function returns true.",
"link": "https://github.com/bahmutov/cypress-recurse",
"keywords": [
"commands",
"wait",
"wait-until",
"recursive-promise",
"check-async-value",
"check-value"
],
"badge": "community"
},
{
"name": "cypress-solid",
"description": "A Cypress plugin to help you test applications using the Solid Protocol.",
"link": "https://github.com/NoelDeMartin/cypress-solid",
"keywords": ["solid", "solid-protocol", "solidproject", "commands"],
"badge": "community"
},
{
"name": "cypress-data-session",
"description": "cy.dataSession command for flexible, cached test-data setup.",
"link": "https://github.com/bahmutov/cypress-data-session",
"keywords": ["commands", "test-data", "data-session", "caching"],
"badge": "community"
}
]
},
{
"name": "Network & API Testing",
"description": "Test, stub, and inspect network requests, APIs, and real-time messaging.",
"plugins": [
{
"name": "@bahmutov/cy-api",
"description": "Cypress custom command \"cy.api\" for HTTP API testing with server logs.",
"link": "https://github.com/bahmutov/cy-api",
"keywords": ["api", "http", "rest", "request", "commands"],
"badge": "community"
},
{
"name": "@swimlane/cy-mockapi",
"description": "Easily mock your REST API in Cypress by putting responses in the fixtures directory tree.",
"link": "https://github.com/swimlane/cy-mockapi",
"keywords": ["mock", "rest", "api"],
"badge": "community"
},
{
"name": "cypress-har-generator",
"description": "Generate HTTP Archive (HAR) while running tests.",
"link": "https://github.com/NeuraLegion/cypress-har-generator",
"keywords": [
"har",
"http-archive",
"http",
"websocket",
"recording",
"chrome"
],
"badge": "community",
"npm": "@neuralegion/cypress-har-generator"
},
{
"name": "cypress-intercept-formdata",
"description": "Work with Cypress' Intercept multipart/form-data requests",
"link": "https://github.com/yoavniran/cypress-intercept-formdata",
"keywords": [
"testing",
"commands",
"intercept",
"form-data",
"request"
],
"badge": "community"
},
{
"name": "cypress-plugin-api",
"description": "Cypress plugin for effective API testing. Imagine Postman, but in Cypress.",
"link": "https://github.com/filiphric/cypress-plugin-api",
"keywords": ["api", "http", "rest", "request", "postman"],
"badge": "community"
},
{
"name": "cypress-plugin-xhr-toggle",
"description": "Hides and reveals XHR events in Cypress GUI",
"link": "https://github.com/filiphric/cypress-plugin-xhr-toggle",
"keywords": ["utility", "UI", "api", "xhr"],
"badge": "community"
},
{
"name": "Cypress-SignalR-Mock",
"description": "Easy way to publish messages from and to your SignalR hubs in Cypress E2E tests.",
"link": "https://github.com/JasonLandbridge/Cypress-SignalR-Mock",
"keywords": ["commands", "signalr", "mock", "websocket"],
"badge": "community"
},
{
"name": "cypress-network-idle",
"description": "Wait for network requests to go idle before continuing the test.",
"link": "https://github.com/bahmutov/cypress-network-idle",
"keywords": ["network", "idle", "wait", "commands"],
"badge": "community"
},
{
"name": "cypress-mock-latency",
"description": "Easily mock real-world flaky network latency and jitter in Cypress tests.",
"link": "https://github.com/dhrusoni84/cypress-mock-latency",
"keywords": ["network", "latency", "jitter", "mock", "throttle"],
"badge": "community"
}
]
},
{
"name": "Databases & Storage",
"description": "Read from and write to databases and browser storage from your Cypress tests.",
"plugins": [
{
"name": "cypress-mongodb",
"description": "Plugin that allows interaction with MongoDB server using Cypress commands.",
"link": "https://github.com/Zaista/cypress-mongodb",
"keywords": [
"testing",
"commands",
"mongodb",
"mongo",
"database",
"db"
],
"badge": "community"
},
{
"name": "@dankieu/cypress-sql",
"description": "Cypress commands to query SQL Server, MySQL, OracleDB, and Postgres databases.",
"link": "https://github.com/testervippro/cypress-sql",
"keywords": ["sql", "database", "test", "commands", "oracle"],
"badge": "community"
},
{
"name": "cypress-localstorage-commands",
"description": "Custom commands for localStorage. Allows preserving localStorage between tests.",
"link": "https://github.com/javierbrea/cypress-localstorage-commands",
"keywords": ["commands", "localstorage", "persistence"],
"badge": "community"
},
{
"name": "@this-dot/cypress-indexeddb",
"description": "Custom commands for indexedDb. Allows populating, modifying and asserting data stored in indexedDb.",
"link": "https://github.com/thisdot/open-source/tree/main/libs/cypress-indexeddb",
"keywords": [
"commands",
"indexedDb",
"storage",
"browser-storage",
"database"
],
"badge": "community"
}
]
},
{
"name": "Accessibility",
"description": "Catch accessibility issues as part of your Cypress tests.",
"plugins": [
{
"name": "Cypress Accessibility",
"description": "Automated accessibility checks across every element in your Cypress runs, with no code changes or test authoring required. Part of Cypress Cloud.",
"link": "/accessibility/get-started/introduction",
"keywords": ["accessibility", "a11y", "cloud"],
"badge": "official"
},
{
"name": "cypress-a11y-report",
"description": "Test your web applications and components for accessibility issues with axe-core®.",
"link": "https://github.com/rowellx68/cypress-a11y-report",
"keywords": ["accessibility", "a11y", "axe-core"],
"badge": "community"
},
{
"name": "cypress-axe",
"description": "Helps test your applications for accessibility issues using axe-core.",
"link": "https://github.com/avanslaars/cypress-axe",
"keywords": ["accessibility", "a11y", "axe-core", "wcag"],
"badge": "community"
},
{
"name": "cypress-accessibility-checker",
"description": "IBM Equal Access accessibility checker for Cypress.",
"link": "https://github.com/IBMa/equal-access",
"keywords": ["accessibility", "a11y", "ibm", "equal-access", "wcag"],
"badge": "community"
}
]
},
{
"name": "Performance",
"description": "Measure command timings and catch performance regressions.",
"plugins": [
{
"name": "cypress-duration-metrics",
"description": "Measure duration of commands and different stages of cypress lifecycle. Log to terminal.",
"link": "https://github.com/archfz/cypress-duration-metrics",
"keywords": [
"duration",
"timings",
"commands",
"performance",
"measurement",
"metrics",
"total"
],
"badge": "community"
},
{
"name": "cypress-perf-baseline",
"description": "Measure performance in Cypress tests, keep a baseline in git, and catch regressions in CI.",
"link": "https://github.com/vimukthi101/cypress-perf-baseline",
"keywords": [
"cypress-plugin",
"performance",
"performance-testing",
"web-vitals",
"lcp",
"fcp",
"metrics",
"benchmark"
],
"badge": "community"
},
{
"name": "cypress-timings",
"description": "A Cypress plugin for reporting individual command timings.",
"link": "https://github.com/bahmutov/cypress-timings",
"keywords": [
"commands",
"performance",
"timings",
"metrics",
"duration"
],
"badge": "community"
}
]
},
{
"name": "Code Coverage & Reporting",
"description": "Collect code coverage and generate rich test reports.",
"plugins": [
{
"name": "UI Coverage",
"description": "A visual map of test coverage across every page and component in your app, surfaced from your existing Cypress runs. Part of Cypress Cloud.",
"link": "/ui-coverage/get-started/introduction",
"keywords": ["coverage", "ui-coverage", "cloud"],
"badge": "official"
},
{
"name": "@cypress/code-coverage",
"description": "Plugin to save code coverage collected during Cypress tests.",
"link": "https://github.com/cypress-io/code-coverage",
"keywords": ["coverage", "code-coverage", "istanbul", "nyc"],
"badge": "official"
},
{
"name": "allure-cypress",
"description": "Allure reporter for Cypress. Creates rich HTML test reports with screenshots, steps and more.",
"link": "https://github.com/allure-framework/allure-js/tree/main/packages/allure-cypress",
"keywords": ["reporter", "allure", "step", "screenshot"],
"badge": "community"
},
{
"name": "cypress-failed-log",
"description": "Saves the Cypress test command log as a JSON file if a test fails.",
"link": "https://github.com/bahmutov/cypress-failed-log",
"keywords": ["reporter", "logs", "failure", "debug"],
"badge": "community"
},
{
"name": "cypress-mochawesome-reporter",
"description": "Zero config Mochawesome reporter for Cypress with screenshots.",
"link": "https://github.com/LironEr/cypress-mochawesome-reporter",
"keywords": ["reporter", "mochawesome", "screenshot"],
"badge": "community"
},
{
"name": "cypress-slack-reporter",
"description": "Slack reporting tool. Uses mochawesome json reports, provides links to VCS Provider (github/bitbucket) and CircleCI logs.",
"link": "https://github.com/you54f/cypress-slack-reporter",
"keywords": ["reporter", "mochawesome", "slack"],
"badge": "community"
},
{
"name": "cypress-terminal-report",
"description": "Logs to terminal and files mimicking cypress UI. Logs all cypress commands, request/response data and browser console logs.",
"link": "https://github.com/archfz/cypress-terminal-report",
"keywords": ["reporter", "logs", "terminal", "CI", "CLI"],
"badge": "community"
},
{
"name": "cypress-xray-junit-reporter",
"description": "Enhances your Cypress test suite with the cypress-xray-junit-reporter a specialized custom reporter designed to seamlessly generating comprehensive XRay-compatible JUnit-style XML reports, complete with embedded screenshots on test failures, facilitating a thorough analysis of test execution.",
"link": "https://github.com/alecmestroni/cypress-xray-junit-reporter",
"keywords": [
"reporter",
"xray",
"mochawesome",
"jira",
"screenshot",
"issue",
"junit",
"screenshots",
"CI",
"CLI"
],
"badge": "community"
},
{
"name": "mochawesome-merge",
"description": "Merges multiple mochawesome JSON reports.",
"link": "https://github.com/antontelesh/mochawesome-merge",
"keywords": ["reporter", "mochawesome", "merge", "json", "reports"],
"badge": "community"
},
{
"name": "@reportportal/agent-js-cypress",
"description": "Reporter that sends Cypress results to ReportPortal.",
"link": "https://github.com/reportportal/agent-js-cypress",
"keywords": ["reporter", "reportportal", "reporting"],
"badge": "community"
},
{
"name": "@qualflare/cypress",
"description": "Native Cypress reporter for Qualflare. Captures suite/test results, real retry counts, screenshots, videos, and command-log step traces as one Launch per run.",
"link": "https://github.com/Qualflare/qualflare-cypress",
"keywords": [
"reporter",
"qualflare",
"test-management",
"screenshot",
"flaky"
],
"badge": "community"
}
]
},
{
"name": "Visual Testing",
"description": "<a target=\"_blank\" href=\"/app/tooling/visual-testing\">Visual testing</a> is a great complement to functional testing.",
"plugins": [
{
"name": "Applitools",
"description": "Fast, easy and reliable visual UI testing with Cypress.",
"link": "https://applitools.com/tutorials/sdks/cypress/quickstart/getting-started",
"badge": "community",
"keywords": ["screenshots", "visual regression", "visual-ai"]
},
{
"name": "Argos",
"description": "Automate visual testing in your CI.",
"link": "https://docs.argos-ci.com/cypress",
"keywords": [
"devX",
"screenshots",
"visual regression",
"visual testing",
"ci"
],
"badge": "community"
},
{
"name": "Happo",
"description": "Catch unexpected visual and accessibility changes and UI bugs",
"link": "https://docs.happo.io/docs/cypress",
"keywords": [
"screenshots",
"visual regression",
"visual testing",
"cross-browser"
],
"badge": "community"
},
{
"name": "Percy",
"description": "Visual regression testing for Cypress tests with Percy.",
"link": "https://docs.percy.io/docs/cypress",
"keywords": [
"screenshots",
"visual regression",
"visual testing",
"cross-browser"
],
"badge": "community"
},
{
"name": "SmartBear VisualTest",
"description": "Visual regression testing for Cypress tests with SmartBear VisualTest.",
"link": "https://support.smartbear.com/visualtest/docs/en/software-development-kits--sdks-/cypress-sdk.html",
"keywords": [
"visual-ai",
"fullpage",
"screenshots",
"visual regression",
"screenshots comparison"
],
"badge": "community"
},
{
"name": "Sauce Labs Visual",
"description": "Visual testing for Cypress tests, reviewed on the Sauce Labs platform.",
"link": "https://docs.saucelabs.com/visual-testing/integrations/cypress/",
"npm": "@saucelabs/cypress-visual-plugin",
"keywords": [
"screenshots",
"visual regression",
"visual testing",
"cross-browser"
],
"badge": "community"
},
{
"name": "LambdaTest SmartUI",
"description": "Visual regression testing for Cypress tests on LambdaTest's SmartUI cloud.",
"link": "https://www.lambdatest.com/support/docs/smartui-cypress-sdk/",
"npm": "@lambdatest/cypress-driver",
"keywords": [
"screenshots",
"visual regression",
"visual testing",
"cross-browser"
],
"badge": "community"
},
{
"name": "Cypress Image Diff",
"description": "Visual regression testing plugin maintained by DIT - UK Gov.",
"link": "https://github.com/uktrade/cypress-image-diff",
"keywords": ["screenshots", "visual regression", "image-diff"],
"badge": "community"
},
{
"name": "Cypress Image Snapshot",
"description": "Catch visual regressions and compare image diffs locally and in Cypress Cloud.",
"link": "https://github.com/simonsmith/cypress-image-snapshot",
"keywords": [
"image-diff",
"snapshot",
"visual regression",
"screenshots"
],
"badge": "community",
"npm": "@simonsmith/cypress-image-snapshot"
},
{