forked from cypress-io/cypress-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.json
1035 lines (1035 loc) · 42.5 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",
"plugins": [
{
"name": "Browserify",
"description": "Watches and bundles your spec files via browserify. This is the default preprocessor that's built into Cypress.",
"link": "https://github.com/cypress-io/cypress-browserify-preprocessor",
"keywords": ["browserify"],
"badge": "official"
},
{
"name": "Cucumber",
"description": "Run cucumber/gherkin-syntaxed specs with cypress.io",
"link": "https://github.com/TheBrainFamily/cypress-cucumber-preprocessor",
"keywords": ["file-watcher", "cucumber"],
"badge": "community"
},
{
"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": "community"
},
{
"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": "community"
},
{
"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": "Webpack",
"description": "Watches and bundles your spec files via webpack.",
"link": "https://github.com/cypress-io/cypress/tree/master/npm/webpack-preprocessor",
"keywords": ["webpack"],
"badge": "official"
},
{
"name": "Rollup",
"description": "Watches and bundles your spec files via Rollup",
"link": "https://github.com/bahmutov/cy-rollup",
"keywords": ["rollup"],
"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-esbuild-preprocessor",
"description": "Uses evanw/esbuild to bundle your specs.",
"link": "https://github.com/sod/cypress-esbuild-preprocessor",
"keywords": ["esbuild"],
"badge": "community"
}
]
},
{
"name": "Development Tools",
"plugins": [
{
"name": "CircleCI Cypress Orb",
"description": "Official Cypress Orb for CircleCI configuration.",
"link": "https://github.com/cypress-io/circleci-orb",
"keywords": ["continuous-integration"],
"badge": "official"
},
{
"name": "cypress-dark",
"description": "Several color themes for Cypress test runner",
"link": "https://github.com/bahmutov/cypress-dark",
"keywords": ["theme"],
"badge": "verified"
},
{
"name": "cypress-protobuf",
"description": "Encode a fixture with Protocol Buffers.",
"link": "https://github.com/NoriSte/cypress-protobuf",
"keywords": ["encoding", "protobuf"],
"badge": "community"
},
{
"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": "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 the Cypress Dashboard parallelization.",
"link": "https://github.com/KnapsackPro/knapsack-pro-cypress",
"keywords": ["CI parallelisation", "continuous-integration"],
"badge": "community"
},
{
"name": "TypeScript",
"description": "Official TypeScript definitions for the Cypress API.",
"link": "https://github.com/cypress-io/cypress/tree/master/cli/types",
"keywords": ["typescript"],
"badge": "official"
},
{
"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": "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": "community"
},
{
"name": "cypress-plugin-livereload",
"description": "Reloads Cypress using livereload",
"link": "https://github.com/unlocomqx/cypress-plugin-livereload",
"keywords": ["livereload"],
"badge": "community"
},
{
"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": "community"
},
{
"name": "cypress-grep",
"description": "Filter tests using its title or tags",
"link": "https://github.com/bahmutov/cypress-grep",
"keywords": ["grep"],
"badge": "community"
},
{
"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": "community"
},
{
"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/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": "official"
},
{
"name": "@cypress/fiddle",
"description": "Quickly generates Cypress tests from HTML and JS code",
"link": "https://github.com/cypress-io/cypress-fiddle",
"keywords": ["prototype"],
"badge": "official"
},
{
"name": "npm-cy",
"description": "This GitHub Action for npm enables arbitrary actions with the npm command-line client, including testing with cypress.io and publishing to a registry.",
"link": "https://github.com/bartlett705/npm-cy",
"keywords": ["github", "actions", "npm"],
"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-dotenv",
"description": "Cypress plugin that enables compatability with dotenv.",
"link": "https://github.com/morficus/cypress-dotenv",
"keywords": ["dotenv", "env", "environment", "env var"],
"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": "@bahmutov/cypress-extends",
"description": "Cypress plugin that adds \"extends\" support to the configuration file",
"link": "https://github.com/bahmutov/cypress-extends",
"keywords": ["config"],
"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": "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/annaet/cypress-tags",
"keywords": ["test", "tag", "browserify"]
},
{
"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-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": "Custom Commands",
"plugins": [
{
"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-unfetch",
"description": "Track, test, and block code execution based on network state.",
"link": "https://github.com/RcKeller/cypress-unfetch",
"keywords": ["commands", "routing", "networking"],
"badge": "verified"
},
{
"name": "cypress-redux",
"description": "Run assertions against Redux stores.",
"link": "https://github.com/RcKeller/cypress-redux",
"keywords": ["commands", "redux"],
"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-file-upload",
"description": "Simple custom command to ease file upload testing",
"link": "https://github.com/abramenal/cypress-file-upload",
"keywords": ["fileupload", "file", "upload", "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-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": "cypress-graphql-mock",
"description": "Adds commands for executing a mocked GraphQL server using only the client",
"link": "https://github.com/tgriesser/cypress-graphql-mock",
"keywords": ["graphql"],
"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-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": "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-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-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": "community"
},
{
"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-xpath",
"keywords": ["xpath", "commands"],
"badge": "official"
},
{
"name": "cypressautomocker",
"description": "Allow recording API results and replaying the APIs as a mock server.",
"link": "https://github.com/scottschafer/cypressautomocker",
"keywords": ["routing", "mock"],
"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": "experimental"
},
{
"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-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-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/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": "official"
},
{
"name": "cypress-websocket-testing",
"description": "Test WebSocket connections with Cypress",
"link": "https://github.com/lensesio/cypress-websocket-testing",
"keywords": ["commands", "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": "cy-spok",
"description": "Adds assertions from Spok library for easy schema and value validations",
"link": "https://github.com/bahmutov/cy-spok",
"keywords": ["assertions"],
"badge": "experimental"
},
{
"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": "cypress-iframe",
"description": "Custom commands for interacting with iframes",
"link": "https://gitlab.com/kgroat/cypress-iframe",
"keywords": ["commands", "iframe"],
"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"]
},
{
"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": "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": "community"
}
]
},
{
"name": "Extending other testing frameworks",
"plugins": [
{
"name": "cyphell",
"description": "Converts WDIO automation tests to Cypress.",
"link": "https://github.com/intuit/cyphfell",
"keywords": ["wdio"],
"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": "community"
},
{
"name": "cypress-jest-adapter",
"description": "Add jest assertion style to Cypress expect command",
"link": "https://github.com/phongnd39/cypress-jest-adapter",
"keywords": ["jest"],
"badge": "community"
},
{
"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": "Authentication",
"description": "Also take a look at <a target=\"_blank\" href=\"https://github.com/cypress-io/cypress-example-recipes#logging-in-recipes\">Logging in</a> recipes.",
"plugins": [
{
"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": "verified"
},
{
"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-otp",
"description": "Valid OTP token generation for Cypress",
"link": "https://github.com/NoriSte/cypress-otp",
"keywords": ["authentication", "otp", "2fa", "mfa"],
"badge": "community"
},
{
"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 Angular Schematic",
"description": "Angular CLI addition that allows you to install Cypress E2E to an Angular CLI project",
"link": "https://github.com/briebug/cypress-schematic",
"keywords": ["angular", "cli"],
"badge": "community"
},
{
"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": "Nrwl Extensions for Angular",
"link": "https://nrwl.io/nx/e2e-testing-with-cypress",
"keywords": ["angular", "cli"],
"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": "verified"
},
{
"name": "Cypress Nuxt",
"description": "Utilities for using Cypress with Nuxt.",
"link": "https://github.com/NickBolles/cypress-nuxt",
"keywords": ["vue.js", "vue", "nuxt", "nuxt.js"],
"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": "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": "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": "cypress-laravel",
"description": "Add commands and hooks to test Laravel applications",
"link": "https://github.com/noeldemartin/cypress-laravel",
"keywords": ["php", "laravel"],
"badge": "community"
},
{
"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": "community"
},
{
"name": "Bison",
"description": "A Full Stack Jamstack Template that uses Cypress and GitHub Actions for E2E testing.",
"link": "https://github.com/echobind/bisonapp",
"keywords": ["next.js", "react", "graphql", "prisma", "vercel"],
"badge": "community"
},
{
"name": "@cypress/schematic",
"description": "Adds Cypress to your Angular project via the Angular CLI",
"link": "https://github.com/cypress-io/cypress/tree/master/npm/cypress-schematic",
"keywords": ["angular", "cli"],
"badge": "official"
}
]
},
{
"name": "Component Testing",
"description": "⚠️ Loading and mounting components from various frameworks is highly experimental and might change in the future.",
"plugins": [
{
"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": "experimental"
},
{
"name": "cypress-angularjs-unit-test",
"description": "Unit test Angularjs code using Cypress Test Runner",
"link": "https://github.com/bahmutov/cypress-angularjs-unit-test",
"keywords": ["component", "angular.js"],
"badge": "experimental"
},
{
"name": "cypress-cycle-unit-test",
"description": "Test Cycle.js components using Cypress Test Runner",
"link": "https://github.com/bahmutov/cypress-cycle-unit-test",
"keywords": ["component", "cycle.js"],
"badge": "experimental"
},
{
"name": "cypress-hyperapp-unit-test",
"description": "Test Hyperapp components and applications using Cypress Test Runner",
"link": "https://github.com/bahmutov/cypress-hyperapp-unit-test",
"keywords": ["component", "hyperapp"],
"badge": "experimental"
},
{
"name": "@cypress/react",
"description": "Test React components using Cypress Test Runner",
"link": "https://github.com/cypress-io/cypress/tree/master/npm/react",
"keywords": ["component", "react"],
"badge": "experimental"
},
{
"name": "cypress-svelte-unit-test",
"description": "Test Svelte components using Cypress Test Runner",
"link": "https://github.com/bahmutov/cypress-svelte-unit-test",
"keywords": ["component", "svelte"],
"badge": "experimental"
},
{
"name": "@cypress/vue",
"description": "Test Vue.js components using Cypress Test Runner",
"link": "https://github.com/cypress-io/cypress/tree/master/npm/vue",
"keywords": ["component", "vue", "vue.js"],
"badge": "experimental"
}
]
},
{
"name": "Visual Testing",
"description": "Visual testing 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/cypress.html",
"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": "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-plugin-snapshots",
"description": "Plugin for snapshot tests in Cypress. Same API as Jest, but with graphical interface for reviewing and approving changes.",
"link": "https://github.com/meinaart/cypress-plugin-snapshots",
"keywords": ["snapshot"],
"badge": "community"
},
{
"name": "Cypress Image Snapshot",
"description": "Catch visual regressions and compare image diffs locally and in Cypress Dashboard.",
"link": "https://github.com/palmerhq/cypress-image-snapshot",
"keywords": ["image-diff", "snapshot"],
"badge": "community"
},
{
"name": "Cypress Visual Regression",
"description": "Adds visual regression testing to Cypress",
"link": "https://github.com/mjhea0/cypress-visual-regression",
"keywords": ["image-diff", "snapshot"],
"badge": "community"
},
{
"name": "cypress-blink-test",
"description": "Module for adding visual regression testing to Cypress.",
"link": "https://github.com/PatrickWalker/cypress-visual-regression",
"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": "Micoo",
"description": "Cypress plugin for doing visual regression testing with Micoo service",
"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-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-log-to-output",
"description": "Plugin that prints all browser console logs to the terminal while running Cypress tests. Currently, only Chrome is supported.",
"link": "https://github.com/flotwig/cypress-log-to-output",
"keywords": ["logging"],
"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": "mochawesome-merge",
"description": "Merges multiple mochawesome JSON reports",
"link": "https://github.com/antontelesh/mochawesome-merge",
"keywords": ["reporter", "mochawesome"],
"badge": "community"
},
{
"name": "cypress-slack-healthcheck",
"description": "A simple tool which integrates Cypress with Slack to report failing tests.",
"link": "https://github.com/bdimitrovski/cypress-healthcheck",
"keywords": ["reporter", "slack", "healthcheck"],
"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 cypress commands, route request data and browser console errors and warnings to terminal when tests fail on CI.",
"link": "https://github.com/archfz/cypress-terminal-report",
"keywords": ["reporter", "logs", "terminal", "CI", "CLI"],
"badge": "community"
},
{
"name": "cypress-allure-plugin",
"description": "Integrates Allure reporter with Cypress. Command logging and screenshot attachment out of the box.",
"link": "https://github.com/Shelex/cypress-allure-plugin",
"keywords": ["reporter", "allure"],
"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-msteams-reporter",