forked from cypress-io/cypress-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.json
1354 lines (1354 loc) · 58.8 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/plugins/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": "Cytorus",
"description": "Run cucumber/gherkin-syntaxed specs with cypress.io.",
"link": "https://github.com/NaturalIntelligence/cytorus",
"keywords": ["gherkin", "cucumber"],
"badge": "deprecated"
},
{
"name": "cypress-app-watcher-preprocessor",
"description": "Reruns Cypress tests when the back end server restarts.",
"link": "https://github.com/TheBrainFamily/cypress-app-watcher-preprocessor",
"keywords": ["file-watcher"],
"badge": "deprecated"
},
{
"name": "cypress-eslint-preprocessor",
"description": "Runs linting via ESLint on your spec files as they are loaded and display errors in the console.",
"link": "https://github.com/chinchiheather/cypress-eslint-preprocessor",
"keywords": ["eslint"],
"badge": "deprecated"
},
{
"name": "Rollup",
"description": "Watches and bundles your spec files via Rollup.",
"link": "https://github.com/bahmutov/cy-rollup",
"keywords": ["rollup"],
"badge": "deprecated"
},
{
"name": "cypress-esbuild-preprocessor",
"description": "Uses evanw/esbuild to bundle your specs.",
"link": "https://github.com/sod/cypress-esbuild-preprocessor",
"keywords": ["esbuild"],
"badge": "deprecated"
}
]
},
{
"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/instrument-cra",
"description": "NPM module for create-react-app applications to instrument source code without ejecting react-scripts.",
"link": "https://github.com/cypress-io/instrument-cra",
"keywords": ["coverage"],
"badge": "deprecated"
},
{
"name": "cypress-dark",
"description": "Several color themes for Cypress test runner.",
"link": "https://github.com/bahmutov/cypress-dark",
"keywords": ["theme"],
"badge": "deprecated"
},
{
"name": "cypress-protobuf",
"description": "Encode a fixture with Protocol Buffers.",
"link": "https://github.com/NoriSte/cypress-protobuf",
"keywords": ["encoding", "protobuf"],
"badge": "deprecated"
},
{
"name": "Knapsack Pro Cypress",
"description": "Dynamic tests split across parallel CI nodes with Knapsack Pro Queue Mode to get faster CI builds. Note - this is 3rd party implementation, different from Cypress Cloud parallelization.",
"link": "https://github.com/KnapsackPro/knapsack-pro-cypress",
"keywords": ["CI parallelisation", "continuous-integration"],
"badge": "deprecated"
},
{
"name": "cypress-autostub",
"description": "Alleviates the need to mantain brittle manual mocks by automating the recording and stubbing of requests.",
"link": "https://github.com/dan-cooke/cypress-autostub",
"keywords": ["mocking", "stubbing", "recording", "fetch", "xhr"],
"badge": "deprecated"
},
{
"name": "cypress-select-tests",
"description": "User space solution for grepping Cypress tests to run.",
"link": "https://github.com/bahmutov/cypress-select-tests",
"keywords": ["browserify"],
"badge": "deprecated"
},
{
"name": "cypress-autorecord",
"description": "Simplify API mocking by auto-recording/stubbing HTTP interactions and automating the process of updating/deleting mocks.",
"link": "https://github.com/Nanciee/cypress-autorecord",
"keywords": ["mock", "recording", "http", "integration test"],
"badge": "deprecated"
},
{
"name": "@cypress/fiddle",
"description": "Quickly generates Cypress E2E tests from HTML and JS code.",
"link": "https://github.com/cypress-io/cypress-fiddle",
"keywords": ["prototype"],
"badge": "deprecated"
},
{
"name": "@bahmutov/cypress-extends",
"description": "Cypress plugin that adds \"extends\" support to the configuration file.",
"link": "https://github.com/bahmutov/cypress-extends",
"keywords": ["config"],
"badge": "deprecated"
},
{
"name": "Browserify",
"description": "Watches and bundles your spec files via browserify.",
"link": "https://github.com/cypress-io/cypress-browserify-preprocessor",
"keywords": ["browserify"],
"badge": "deprecated"
}
]
},
{
"name": "Custom Commands",
"description": "Read the <a target=\"_blank\" href=\"/api/plugins/preprocessors-api\">Custom Commands</a> and <a target=\"_blank\" href=\"/api/plugins/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-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-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": "cypress-unfetch",
"description": "Track, test, and block code execution based on network state.",
"link": "https://github.com/RcKeller/cypress-unfetch",
"keywords": ["commands", "routing", "networking"],
"badge": "deprecated"
},
{
"name": "cypress-redux",
"description": "Run assertions against Redux stores.",
"link": "https://github.com/RcKeller/cypress-redux",
"keywords": ["commands", "redux"],
"badge": "deprecated"
},
{
"name": "cypress-pipe",
"description": "Create custom commands using plain-old functions. Similar to `cy.then` but with retriability.",
"link": "https://github.com/NicholasBoll/cypress-pipe",
"keywords": ["commands"],
"badge": "deprecated"
},
{
"name": "cypress-plugin-stripe-elements",
"description": "Simple commands that make it easy to target and fill in Stripe Elements input fields",
"link": "https://github.com/dbalatero/cypress-plugin-stripe-elements",
"keywords": ["stripe", "commands", "elements", "inputs"],
"badge": "deprecated"
},
{
"name": "@cypress/skip-test",
"description": "Simple commands to skip a test based on platform, browser or a url.",
"link": "https://github.com/cypress-io/cypress-skip-test",
"keywords": ["commands"],
"badge": "deprecated"
},
{
"name": "cypress-websocket-testing",
"description": "Test WebSocket connections with Cypress",
"link": "https://github.com/lensesio/cypress-websocket-testing",
"keywords": ["commands", "websocket"],
"badge": "deprecated"
},
{
"name": "cypress-iframe",
"description": "Custom commands for interacting with iframes.",
"link": "https://gitlab.com/kgroat/cypress-iframe",
"keywords": ["commands", "iframe"],
"badge": "deprecated"
},
{
"name": "cypress-rest-graphql",
"description": "Add visual output and helper functions for performing REST and graphQL queries.",
"link": "https://github.com/BrandedEntertainmentNetwork/cypress-rest-graphql",
"keywords": ["api", "rest", "graphQL"],
"badge": "deprecated"
},
{
"name": "cypress-dotenv",
"description": "Cypress plugin that enables compatibility with dotenv.",
"link": "https://github.com/morficus/cypress-dotenv",
"keywords": ["dotenv", "env", "environment", "env var"],
"badge": "deprecated"
},
{
"name": "cypress-xpath",
"description": "Adds XPath command. This repo is also a good example of using custom commands to do retries, provide TypeScript definitions, etc.",
"link": "https://github.com/cypress-io/cypress/tree/develop/npm/xpath",
"keywords": ["xpath", "commands"],
"badge": "deprecated"
}
]
},
{
"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": "cypress-capybara",
"description": "Several Capybara finders re-implemented in Cypress to locate UI elements by their text and labels.",
"link": "https://github.com/testdouble/cypress-capybara",
"keywords": ["testing-library", "capybara"],
"badge": "deprecated"
},
{
"name": "cypress-jest-adapter",
"description": "Add jest assertion style to Cypress expect command.",
"link": "https://github.com/phongnd39/cypress-jest-adapter",
"keywords": ["jest"],
"badge": "deprecated"
}
]
},
{
"name": "Authentication",
"description": "Take a look at our auth guides for <a href=\"/guides/end-to-end-testing/amazon-cognito-authentication\">Amazon Cognito</a>, <a href=\"/guides/end-to-end-testing/amazon-cognito-authentication\">Amazon Cognito</a>, <a href=\"/guides/end-to-end-testing/auth0-authentication\">Auth0</a>, <a href=\"/guides/end-to-end-testing/amazon-cognito-authentication\">Amazon Cognito</a>, <a href=\"/guides/end-to-end-testing/google-authentication\">Google</a>, <a href=\"/guides/end-to-end-testing/okta-authentication\">Okta Cognito</a>, and <a href=\"/guides/end-to-end-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": "cypress-keycloak-commands",
"description": "Cypress commands for authenticate users with Keycloak Identity Provider.",
"link": "https://github.com/Fredx87/cypress-keycloak-commands",
"keywords": [
"authentication",
"login",
"keycloak",
"oauth",
"openid"
],
"badge": "deprecated"
},
{
"name": "cypress-otp",
"description": "Valid OTP token generation for Cypress.",
"link": "https://github.com/NoriSte/cypress-otp",
"keywords": ["authentication", "otp", "2fa", "mfa"],
"badge": "deprecated"
}
]
},
{
"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": "Vue CLI",
"description": "Vue CLI allows you to scaffold an application with Cypress E2E fully configured.",
"link": "https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-e2e-cypress",
"keywords": ["vue.js", "vue", "cli"],
"badge": "deprecated"
},
{
"name": "Elm Batteries Included",
"description": "A project template to learn how Elm, Parcel, Cypress and Netlify work together.",
"link": "https://github.com/cedricss/elm-batteries",
"keywords": ["elm", "parcel", "netlify"],
"badge": "deprecated"
},
{
"name": "cypress-laravel",
"description": "Add commands and hooks to test Laravel applications.",
"link": "https://github.com/noeldemartin/cypress-laravel",
"keywords": ["php", "laravel"],
"badge": "deprecated"
},
{
"name": "cypress-splitio",
"description": "Stores your split.io toggles as environment variables. Helps to decide which e2e tests you need to run.",
"link": "https://gitlab.com/davidggevorgyan/cypress-splitio",
"keywords": ["split.io", "feature flags"],
"badge": "deprecated"
}
]
},
{
"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=\"/guides/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=\"/guides/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=\"/guides/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=\"/guides/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=\"/guides/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"
},