-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
plugins.json
1108 lines (1108 loc) · 49.1 KB
/
plugins.json
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"],
"badge": "official"
},
{
"name": "Watch",
"description": "Watches your spec files and serves them as-is. Useful as an example reference or if you don't need transpiling/bundling.",
"link": "https://github.com/cypress-io/cypress-watch-preprocessor",
"keywords": ["file-watcher"],
"badge": "official"
},
{
"name": "Cucumber",
"description": "Run cucumber/gherkin-syntaxed specs with cypress.io.",
"link": "https://github.com/badeball/cypress-cucumber-preprocessor",
"keywords": ["file-watcher", "cucumber"],
"badge": "community"
},
{
"name": "cypress-markdown-preprocessor",
"description": "Cypress preprocessor for extracting tests from Markdown files.",
"link": "https://github.com/bahmutov/cypress-markdown-preprocessor",
"keywords": ["markdown"],
"badge": "community"
},
{
"name": "cypress-rollup-preprocessor",
"description": "Cypress preprocessor for bundling JavaScript via rollup.",
"link": "https://github.com/lmarqs/cypress-rollup-preprocessor",
"keywords": ["rollup"],
"badge": "community"
},
{
"name": "@bahmutov/cypress-esbuild-preprocessor",
"description": "Bundle Cypress specs using esbuild.",
"link": "https://github.com/bahmutov/cypress-esbuild-preprocessor",
"keywords": ["esbuild"],
"badge": "community"
},
{
"name": "cypress-vite",
"description": "Cypress preproccessor for running specs using vite.",
"link": "https://github.com/mammadataei/cypress-vite",
"keywords": ["vite"],
"badge": "community"
}
]
},
{
"name": "Secret Managment",
"plugins": [
{
"name": "Cypress AWS Secrets Manager",
"description": "This plugin integrates AWS Secrets Manager into your Cypress tests, ensuring that sensitive data like API keys, passwords, and tokens remain secure during testing. It allows for secure loading and updating of secrets directly from your tests.",
"link": "https://github.com/alecmestroni/cypress-aws-secrets-manager/",
"keywords": ["aws", "secrets", "aws-secrets-manager", "secrets-manager"],
"badge": "community"
}
]
},
{
"name": "Development Tools",
"plugins": [
{
"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"],
"badge": "official"
},
{
"name": "eslint-plugin-cypress",
"description": "ESLint plugin that sets globals for writing tests in Cypress.",
"link": "https://github.com/cypress-io/eslint-plugin-cypress",
"keywords": ["eslint"],
"badge": "official"
},
{
"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"],
"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"],
"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"],
"badge": "official"
},
{
"name": "Cypress Chrome Recorder",
"description": "Tool to export Cypress Tests from Google Chrome DevTools' Recordings programmatically.",
"link": "https://github.com/cypress-io/cypress-chrome-recorder",
"keywords": ["recording", "chrome", "automation", "devtools"],
"badge": "official"
},
{
"name": "Cypress Chrome Recorder Extension",
"description": "Official Cypress extension for Chrome DevTools that allows you to export Cypress tests directly from the Recorder panel.",
"link": "https://chrome.google.com/webstore/detail/cypress-chrome-recorder/fellcphjglholofndfmmjmheedhomgin",
"keywords": ["recording", "chrome", "extension", "devtools"],
"badge": "official"
},
{
"name": "@cypress/grep",
"description": "Filter tests using its title or tags.",
"link": "https://github.com/cypress-io/cypress/tree/develop/npm/grep",
"keywords": ["grep"],
"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"],
"badge": "official"
},
{
"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-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": "cly",
"description": "A prototype of generating quicker project scaffolding for Cypress.",
"link": "https://github.com/bahmutov/cly",
"keywords": ["cypress cli", "prototype", "CLI", "scaffolding"],
"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"],
"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-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"
},
{
"name": "cypress-expect-n-assertions",
"description": "Cypress helper that checks number of expected and actual assertions in the test.",
"link": "https://github.com/bahmutov/cypress-expect-n-assertions",
"keywords": ["test", "assertion"],
"badge": "community"
},
{
"name": "cypress-audit",
"description": "Run Lighthouse audit directly in your E2E test suites.",
"link": "https://github.com/mfrachet/cypress-audit",
"keywords": ["lighthouse"],
"badge": "community"
},
{
"name": "cypress-hmr-restarter",
"description": "Restarts tests when receiving webpack-dev-server HMR updates.",
"link": "https://github.com/Svish/cypress-hmr-restarter",
"keywords": ["webpack", "webpack-dev-server", "hmr"],
"badge": "community"
},
{
"name": "cypress-browser-permissions",
"description": "Controls permissions for desktop notifications, geolocation, and other browser APIs",
"link": "https://github.com/kamranayub/cypress-browser-permissions",
"keywords": [
"permissions",
"notifications",
"geolocation",
"camera",
"microphone"
],
"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",
"keyboards": ["cli", "ci"],
"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"],
"badge": "community"
},
{
"name": "cypress-log-filter",
"description": "Easily filter Cypress command logs based on different log levels",
"link": "https://github.com/Brugui7/cypress-log-filter",
"keywords": ["log", "command", "filter"],
"badge": "community"
},
{
"name": "cy-search",
"description": "Search Cypress documentation from the terminal.",
"link": "https://github.com/bahmutov/cy-search",
"keywords": ["cli"],
"badge": "community"
},
{
"name": "cypress-tags",
"description": "Use custom tags to slice up Cypress test runs.",
"link": "https://github.com/infosum/cypress-tags",
"keywords": ["test", "tag", "browserify"],
"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-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-timings",
"description": "A Cypress plugin for reporting individual command timings.",
"link": "https://github.com/bahmutov/cypress-timings",
"keywords": ["commands", "performance"],
"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-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-backoff",
"description": "A Cypress plugin to apply different timeout strategies to retried tests",
"link": "https://github.com/joostvanwollingen/cypress-backoff",
"keywords": ["retries", "backoff"],
"badge": "community"
},
{
"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"],
"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"],
"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/node-events/preprocessors-api\">Custom Commands</a> and <a target=\"_blank\" href=\"/api/node-events/preprocessors-api\">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"],
"badge": "official"
},
{
"name": "cypress-testing-library",
"description": "🐅 Simple and complete custom Cypress commands and utilities that encourage good testing practices.",
"link": "https://github.com/kentcdodds/cypress-testing-library",
"keywords": [
"testing-library",
"dom-testing-library",
"react-testing-library"
],
"badge": "verified"
},
{
"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",
"open-source-saturday"
],
"badge": "verified"
},
{
"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-env",
"description": " This utility simplifies the process of handling different environments (such as test, staging, and production) by providing a 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-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-plugin-api",
"description": "Cypress plugin for effective API testing. Imagine Postman, but in Cypress.",
"link": "https://github.com/filiphric/cypress-plugin-api",
"keywords": ["api"],
"badge": "community"
},
{
"name": "cy-view",
"description": "Run tests on multiple URLs at various viewport sizes.",
"link": "https://github.com/andrewmcoupe/cy-view",
"keywords": ["viewports"],
"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"],
"badge": "community"
},
{
"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-drag-drop",
"description": "Adds a cypress child command for drag'n'drop support.",
"link": "https://github.com/4teamwork/cypress-drag-drop",
"keywords": ["dragndrop", "drag", "drop", "commands"],
"badge": "community"
},
{
"name": "cypress-fill-command",
"description": "A Cypress command for fill inputs.",
"link": "https://github.com/DanielFerrariR/cypress-fill-command",
"keywords": ["commands"],
"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"],
"badge": "community"
},
{
"name": "cypress-graphql",
"description": "Custom commands to stub, spy, or test GraphQL operations.",
"link": "https://github.com/Shopify/cypress-graphql",
"keywords": ["graphql", "mocking", "networking", "commands"],
"badge": "community"
},
{
"name": "cypress-graphql-mock-network",
"description": "Custom commands to mock your GraphQL API at the network level. Using service-workers for complete isolation of the mock server.",
"link": "https://github.com/warrenday/cypress-graphql-mock-network",
"keywords": ["graphql", "mocking", "networking", "commands"],
"badge": "community"
},
{
"name": "cy-mobile-commands",
"description": "Mobile testing helper for Cypress.",
"link": "https://gitlab.com/nTopus/cy-mobile-commands#readme",
"keywords": ["mobile", "swipe", "touch", "commands"],
"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"],
"badge": "community"
},
{
"name": "cypress-commands",
"description": "A collection of Cypress commands to extend and complement the defaults.",
"link": "https://github.com/Lakitna/cypress-commands",
"keywords": ["commands"],
"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-cy-select",
"description": "data-cy shorthand notation for cypress get and find functions.",
"link": "https://github.com/FlorianGoussin/cypress-cy-select",
"keywords": ["commands", "shorthand"],
"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": "@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"],
"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"],
"badge": "community"
},
{
"name": "cypress-react-selector",
"description": "cypress custom commands to locate react elements by component, props and state.",
"link": "https://github.com/abhinaba-ghosh/cypress-react-selector",
"keywords": ["react", "commands", "locator"],
"badge": "community"
},
{
"name": "cypress-layout-inspector",
"description": "A simple utility to provide layout testing functionality to Cypress via custom assertions.",
"link": "https://github.com/msmps/cypress-layout-inspector",
"keywords": ["testing", "ui", "dom", "assertions"],
"badge": "community"
},
{
"name": "@swimlane/cy-dom-diff",
"description": "cy-dom-diff allows matching chunks of DOM against HTML; including dynamic content.",
"link": "https://github.com/swimlane/cy-dom-diff",
"keywords": ["dom", "assertions"],
"badge": "community"
},
{
"name": "cypress-real-events",
"description": "Fire native system events from Cypress like hover, swipe, etc.",
"link": "https://github.com/dmtrKovalenko/cypress-real-events",
"keywords": ["commands"],
"badge": "community"
},
{
"name": "cypress-azure-keyvault",
"description": "Cypress custom command to get keys from Azure Key Vaults.",
"link": "https://github.com/prma85/cypress-azure-keyvault",
"keywords": ["testing", "azure", "keyvault", "secret"],
"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-if",
"description": "Easy conditional if-else logic for your Cypress tests.",
"link": "https://github.com/bahmutov/cypress-if",
"keywords": ["commands"],
"badge": "community"
},
{
"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": "cy-spok",
"description": "Adds assertions from Spok library for easy schema and value validations.",
"link": "https://github.com/bahmutov/cy-spok",
"keywords": ["assertions"],
"badge": "community"
},
{
"name": "cypress-plugin-tab",
"description": "A Cypress plugin to add a tab command.",
"link": "https://github.com/Bkucera/cypress-plugin-tab",
"keywords": ["commands"],
"badge": "community"
},
{
"name": "cypress-plugin-multiple-click",
"description": "Click multiple times in Cypress.",
"link": "https://github.com/MohamadKh75/cypress-plugin-multiple-click",
"keywords": ["testing", "commands", "click"],
"badge": "community"
},
{
"name": "@datashard/snapshot",
"description": "Adds Snapshot command. Adds value / object / DOM element snapshot testing support to Cypress test runner",
"link": "https://github.com/datashard/snapshot",
"keywords": ["snapshot", "comparison", "commands"],
"badge": "community"
},
{
"name": "cypress-plugin-dotenv",
"description": "Load .env variables in Cypress.",
"link": "https://github.com/MohamadKh75/cypress-plugin-dotenv",
"keywords": ["testing", "commands", ".env", "environment variables"],
"badge": "community"
},
{
"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": "Extending other testing frameworks",
"plugins": [
{
"name": "PickleJS",
"description": "An addition to the Cucumber plugin, featuring a collection of phrases you can use for common actions (ex: \"I click on an <Element>\", \"I should see an <Element>\").",
"link": "https://picklejs.com",
"keywords": ["cucumber", "collection", "actions", "commands"],
"badge": "community"
},
{
"name": "Pact Cypress Adapter",
"description": "Simple commands to generate Pact contracts from your existing Cypress tests, maintained by the Pactflow team.",
"link": "https://github.com/pactflow/pact-cypress-adapter",
"keywords": ["pact", "pactflow", "contract testing", "commands"],
"badge": "community"
}
]
},
{
"name": "Authentication",
"description": "Take a look at our auth guides for <a href=\"/app/guides/authentication-testing/amazon-cognito-authentication\">Amazon Cognito</a>, <a href=\"/app/guides/authentication-testing/amazon-cognito-authentication\">Amazon Cognito</a>, <a href=\"/app/guides/authentication-testing/auth0-authentication\">Auth0</a>, <a href=\"/app/guides/authentication-testing/amazon-cognito-authentication\">Amazon Cognito</a>, <a href=\"/app/guides/authentication-testing/google-authentication\">Google</a>, <a href=\"/app/guides/authentication-testing/okta-authentication\">Okta Cognito</a>, and <a href=\"/app/guides/authentication-testing/social-authentication\">Social Logins</a>. Also checkout our <a target=\"_blank\" href=\"https://github.com/cypress-io/cypress-example-recipes#logging-in-recipes\">Logging in</a> recipes.",
"plugins": [
{
"name": "cypress-ntlm-auth",
"description": "NTLM authentication support for Cypress.",
"link": "https://github.com/bjowes/cypress-ntlm-auth",
"keywords": ["authentication", "ntlm"],
"badge": "verified"
},
{
"name": "cypress-social-logins",
"description": "Cypress authentication flows using social network providers.",
"link": "https://github.com/lirantal/cypress-social-logins",
"keywords": [
"authentication",
"login",
"social profiles",
"github",
"google"
],
"badge": "community"
}
]
},
{
"name": "Framework tooling",
"plugins": [
{
"name": "Cypress Schematic",
"description": "Adds Cypress to your Angular project via the Angular CLI. Adopted by Cypress; originally released as <a target=\"_blank\" href=\"https://www.npmjs.com/package/@briebug/cypress-schematic\">@briebug/cypress-schematic</a>.",
"link": "https://github.com/cypress-io/cypress/tree/develop/npm/cypress-schematic",
"keywords": ["angular", "cli"],
"badge": "official"
},
{
"name": "cypress-on-rails",
"description": "Rubygem for using cypress.io with Ruby on Rails applications.",
"link": "https://github.com/shakacode/cypress-on-rails",
"keywords": ["ruby-rack", "ruby-on-rails"],
"badge": "community"
},
{
"name": "Nx",
"description": "Smart, Fast and Extensible Build System.",
"link": "https://nx.dev/cypress/overview",
"keywords": ["angular", "react", "cli", "monorepo"],
"badge": "community"
},
{
"name": "Aurelia CLI",
"description": "The Aurelia CLI is the official command line tool for Aurelia.",
"link": "https://aurelia.io/docs/cli",
"keywords": ["aurelia", "cli"],
"badge": "community"
},
{
"name": "WordPress ReactJS Boilerplate",
"description": "Complete WordPress Plugin Boilerplate including Cypress.io E2E tests.",
"link": "https://github.com/matzeeable/wp-reactjs-starter",
"keywords": ["wp", "wordpress"],
"badge": "community"
},
{
"name": "Next Right Now - Next.js Boilerplate",
"description": "Next.js boilerplate with Jest/Cypress and CI/CD pipeline built-in (monorepo, multi-tenants).",
"link": "https://github.com/UnlyEd/next-right-now",
"keywords": ["next.js", "react", "monorepo", "multi-tenants"],
"badge": "community"
},
{
"name": "cypress-rails",
"description": "Ruby gem to run Cypress against Rails apps, replacing Capybara in system tests.",
"link": "https://github.com/testdouble/cypress-rails",
"keywords": ["ruby", "rails"],
"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"],
"badge": "official"
},
{
"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"],
"badge": "official"
},
{
"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"],
"badge": "official"
},
{
"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"],
"badge": "official"
},
{
"name": "Cypress Vue2",
"description": "Test Vue 2 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/vue2",
"keywords": ["component", "vue", "vue.js"],
"badge": "official"
},
{
"name": "cypress-angular-unit-test",
"description": "Test Angular component using Cypress Test Runner.",
"link": "https://github.com/bahmutov/cypress-angular-unit-test",
"keywords": ["component", "angular"],
"badge": "community"
},
{
"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": "Visual Testing",
"description": "<a target=\"_blank\" href=\"/app/tooling/visual-testing\">Visual testing</a> is a great complement to functional testing.",
"plugins": [
{
"name": "Wopee.io",
"description": "Wopee.io: Easy visual testing with Cypress.",
"link": "https://docs.wopee.io/integrations/cypress/01-getting-started/",
"keywords": [
"fullpage",
"screenshots",
"visual regression",
"screenshots comparison"
],
"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": "verified"
},
{
"name": "Argos",
"description": "Automate visual testing in your CI.",
"link": "https://docs.argos-ci.com/cypress",
"keywords": ["devX", "screenshots"],
"badge": "verified"
},
{
"name": "Applitools",
"description": "Fast, easy and reliable visual UI testing with Cypress.",
"link": "https://applitools.com/tutorials/sdks/cypress/quickstart/getting-started",
"keyword": ["screenshots", "visual regression", "visual-ai"],
"badge": "verified"
},
{
"name": "Percy",
"description": "Visual regression testing for Cypress tests with Percy.",
"link": "https://docs.percy.io/docs/cypress",
"keywords": ["screenshots", "visual regression"],
"badge": "verified"
},
{
"name": "Pixeleye",
"description": "Open-source, multi-browser visual review and testing platform.",
"link": "https://pixeleye.io/docs/integrations/cypress",
"keywords": [
"open-source",
"screenshots",
"visual regression",
"multi-browser"
],
"badge": "community"
},
{
"name": "Happo",
"description": "Cross-platform, cross-browser screenshot testing for modern user interfaces.",
"link": "https://github.com/happo/happo-cypress",
"keywords": ["screenshots", "visual regression"],
"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"],
"badge": "community"
},
{
"name": "Cypress Visual Regression",
"description": "Plugin that adds powerful visual regression testing capabilities to Cypress, that comes with a comparison preview built in the Cypress Test Runner.",
"link": "https://github.com/cypress-visual-regression/cypress-visual-regression",
"keywords": ["image-diff", "snapshot", "visual regression"],
"badge": "community"
},
{
"name": "Cypress Visual Regression with Resemble.JS",
"description": "A module for adding visual regression testing to Cypress, based on Cypress Visual Regression plugin and Resemble.JS library. The main difference between 'Cypress Visual Regression' plugin and this one is that the present plugin mitigates the anti-aliasing problem. The problem appears when comparing the base and actual screenshots generated on different environments (e.g. Windows vs Linux).",
"link": "https://github.com/Andremoniy/cypress-visual-regression-resemble-js",
"keywords": ["image-diff", "snapshot"],
"badge": "community"
},
{
"name": "Visual Regression Tracker",
"description": "Integration with open source service for visual testing and managing its results.",
"link": "https://github.com/Visual-Regression-Tracker/agent-cypress",
"keywords": ["screenshots", "image-diff", "visual regression"],
"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": "Visual Regression Diff",
"description": "Perform visual regression test with a nice GUI as help. 💅 Supports both E2E and Component Testings",
"link": "https://github.com/FRSOURCE/cypress-plugin-visual-regression-diff",
"keywords": [
"screenshots",
"visual regression",
"visual testing",
"image-diff",
"image comparison",
"image snapshot"
],
"badge": "community"
},
{
"name": "Micoo",
"description": "Cypress plugin for doing visual regression testing with Micoo services",
"link": "https://github.com/Mikuu/Micoo/tree/master/clients/micoocypress",
"keywords": [
"visual regression testing",
"visual testing",
"screenshots comparison",
"testing service"
],
"badge": "community"
}
]
},
{
"name": "Reporting",
"plugins": [
{
"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": "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"],
"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": "autoset-status-cypress-testrail-reporter",
"description": "TestRail Reporter which auto-set status for specific TestRun for Cypress.",
"link": "https://github.com/dkuznetsov21/autoset-status-cypress-testrail-reporter",
"keywords": ["testrail", "reporter", "autoset", "status"],
"badge": "community"
},
{
"name": "cypress-testrail-reporter",
"description": "Custom reporter for publishing Cypress results to a TestRail test run.",
"link": "https://github.com/Vivify-Ideas/cypress-testrail-reporter",
"keywords": ["testrail", "reporter"],
"badge": "community"
},
{
"name": "cypress-teamcity-reporter",
"description": "Custom reporter for Teamcity which makes it possible to display test results in real-time and add them on the Tests tab of the Build Results page.",
"link": "https://github.com/prma85/cypress-teamcity-reporter",
"keywords": ["teamcity", "reporter"],
"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",