forked from cypress-io/cypress-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.yml
1311 lines (1147 loc) · 53 KB
/
blogs.yml
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
# small links with just title and url
small:
- title: "Cypress Technology Blog"
sourceUrl: https://www.cypress.io/blog
- title: "Gleb Bahmutov's Cypress blog posts"
sourceUrl: https://glebbahmutov.com/blog/tags/cypress/
# large links with thumbnails, links, embedded video
large:
- title: "Going Automotive: Increasing Quality"
url: https://blog.noredink.com/post/186956536122/going-automotive-increasing-quality-to-misquote
sourceName: "NoRedInk"
sourceUrl: https://blog.noredink.com/
author: Matt Charlton
date: Aug 12, 2019
img: /img/examples/no-red-ink-automating-with-cypress-tests-adnvantages.jpg
- title: "The concept of Monitoring Tests"
url: https://dev.to/noriste/the-concept-of-monitoring-tests-4l5j
sourceName: "DEV.to"
sourceUrl: https://dev.to/
author: Stefano Magni
date: Jul 30, 2019
img: /img/examples/conio-devto-monitoring-tests.png
- title: "Sleeping better at night with Cypress.io"
url: https://dev.to/tlakomy/sleeping-better-at-night-with-cypress-io-59m2
sourceName: "DEV.to"
sourceUrl: https://dev.to/
author: Tomasz Lakomy
date: Jul 29, 2019
img: /img/examples/devto-sleep-at-night-cypress.png
- title: "Cypress.io: the Selenium killer"
url: https://blog.logrocket.com/cypress-io-the-selenium-killer/
sourceName: LogRocket
sourceUrl: https://blog.logrocket.com
author: Paul Cowan
date: Jul 29, 2019
img: /img/examples/logrocket-selenium-cypress.png
- title: "Await, do not make your E2E tests sleep"
url: https://itnext.io/await-do-not-sleep-your-e2e-tests-df67e051b409
sourceName: ITNext
sourceUrl: https://itnext.io/
author: Stefano Magni
date: Jul 25, 2019
img: /img/examples/itnext-await-e2e-cypress.png
- title: "Cypress: A New Kid On The E2E Block"
url: https://ordina-jworks.github.io/testing/2019/07/18/Cypress.html
sourceName: JWorks Tech Blog
sourceUrl: https://ordina-jworks.github.io/
author: Tim Vierbergen
date: Jul 18, 2019
img: /img/examples/ordina-cypress-new-kid-e2e-block.png
- title: "Generate a Beautiful Test Report from running Tests on Cypress.io"
url: https://medium.com/@nottyo/generate-a-beautiful-test-report-from-running-tests-on-cypress-io-371c00d7865a
sourceName: Medium
sourceUrl: https://medium.com/
author: Traitanit Huangsri
date: Jul 16, 2019
img: /img/examples/generate-test-reports-cypress.png
- title: "Challenging the Testing Pyramid"
url: https://juristr.com/blog/2019/07/testing-cypress-intro/
sourceName: Juri Strumpflohner
sourceUrl: https://juristr.com/
author: Juri Strumpflohner
date: Jul 16, 2019
img: /img/examples/challenging-testing-pyramid.png
- title: "Integrating Cypress.io into Fundbox’s core products"
url: https://medium.com/fundbox-engineering/integrating-cypress-io-into-fundboxs-core-products-61ba9db3c32c
sourceName: Medium
sourceUrl: https://medium.com/
author: Itay Kotler
date: Jul 15, 2019
img: /img/examples/fundbox-cypress-integration.png
- title: "Nx, mono repositories in Angular"
url: https://academia-binaria.com/nx-mono-repositorios-en-Angular/
sourceName: Academia Binaria
sourceUrl: https://academia-binaria.com/
author: Alberto Basalo
date: Jul 11, 2019
img: /img/examples/monorepo-angular-cypress.png
- title: "[2019 update] Using Cypress in GitLab CI"
url: https://lcx.wien/blog/cypress-gitlab-ci/
sourceName: "LcX.wien IT Solutions"
sourceUrl: https://lcx.wien/
author: Cristian Livadaru
date: Jul 11, 2019
img: /img/examples/cypress-gitlab-ci-2019.png
- title: "End-to-end testing using Cypress"
url: https://tevpro.com/blog/end-to-end-testing-using-cypress
sourceName: Tevpro
sourceUrl: https://tevpro.com/
author: Justin Waldrip
date: Jul 8, 2019
img: /img/examples/tevpro-e2e-testing-cypress.png
- title: "My Thoughts on Cypress.io"
url: https://watirmelon.blog/2019/07/06/my-thoughts-on-cypress-io/
sourceName: WatirMelon
sourceUrl: https://watirmelon.blog/
author: Alister Scott
date: Jul 6, 2019
img: /img/examples/watirmelon-thoughts-cypress.png
- title: "Create Code Coverage Report from running End-to-End Test with Cypress.io"
url: https://medium.com/@nottyo/generate-a-beautiful-test-report-from-running-tests-on-cypress-io-371c00d7865a
sourceName: Medium
sourceUrl: https://medium.com
author: Traitanit Huangsri
date: Jul 6, 2019
img: /img/examples/code-coverage-e2e-cypress.png
- title: "How to test for accessibility with Cypress"
url: https://www.deque.com/blog/how-to-test-for-accessibility-with-cypress/
sourceName: Deque
sourceUrl: https://www.deque.com/
author: Josh McClure
date: Jul 02, 2019
img: /img/examples/deque-accessibility-cypress.png
- title: "Testing mobile, tablet and desktop devices with Cypress"
url: https://maximilianschmitt.me/posts/cypress-testing-mobile-tablet-desktop/
sourceName: Max Schmitt
sourceUrl: https://maximilianschmitt.me/
author: Max Schmitt
date: Jul 1, 2019
img: /img/examples/max-schmitt-test-devices-cypress.png
- title: "Making a random string and running in cypress"
url: https://medium.com/prontotools/%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B8%97%E0%B8%B3-random-string-%E0%B9%81%E0%B8%A5%E0%B8%B0%E0%B9%80%E0%B8%A3%E0%B8%B5%E0%B8%A2%E0%B8%81%E0%B9%83%E0%B8%8A%E0%B9%89%E0%B9%83%E0%B8%99-cypress-3d0b80ed3d20
sourceName: Medium
sourceUrl: https://medium.com
author: Poomjai Saeyong
date: Jun 30, 2019
img: /img/examples/random-string-running-cypress.png
- title: "migrating to Sapper part 2 bis - Netlify, GitHub Actions with Cypress.io"
url: https://lacourt.dev/2019/06/30
sourceName: David's Blog
sourceUrl: https://lacourt.dev/
author: David Lacourt
date: Jun 30, 2019
img: /img/examples/lacourt-sapper-migration-cypress-part2.png
- title: "Testing with Cypress – Custom logging of errors and JUnit results"
url: https://automationrhapsody.com/testing-with-cypress-custom-logging-of-errors-and-junit-results/
sourceName: Automation Rhapsody
sourceUrl: https://automationrhapsody.com
author: Lyudmil Latinov
date: Jun 28, 2019
img: /img/examples/automation-rhapsody-junit-cypress.png
- title: "Cypress Framework: The Swiss Army Knife For Your Tests"
url: https://apiumhub.com/tech-blog-barcelona/cypress-framework-swiss-knife-tests/
sourceName: Apiumhub
sourceUrl: https://apiumhub.com/
author: Serhii Zabolennyi
date: Jun 25, 2019
img: /img/examples/apiumhub-swiss-army-cypress.png
- title: "React.js, UnForm, validations and Cypress.io tests"
url: https://joaovanzuita.me/blog/react-js-unform-validations-and-cypress-io-tests
sourceName: Joao Vanzuita
sourceUrl: https://joaovanzuita.me/
author: Joao Vanzuita
date: Jun 21, 2019
img: /img/examples/joao-react-unform-cypress.png
- title: "migrating to Sapper part 2 - TDD with Cypress.io"
url: https://lacourt.dev/2019/06/21
sourceName: David's Blog
sourceUrl: https://lacourt.dev/
author: David Lacourt
date: Jun 21, 2019
img: /img/examples/lacourt-sapper-migration-cypress.png
- title: "Waiting for network resources in Cypress"
url: https://www.artmann.co/articles/waiting-for-network-resources-in-cypress-c9cb5cca-b5d6-49df-bd30-c8c744bad147
sourceName: Christoffer Artmann
sourceUrl: https://www.artmann.co/
author: Christoffer Artmann
date: Jun 20, 2019
img: /img/examples/artmann-network-resources-cypress.png
- title: "E2E Testing without the boring part — A tutorial on Cypress (part 1)"
url: https://medium.com/softup-technologies/e2e-testing-without-the-boring-part-a-tutorial-with-cypress-part-1-1c8e81e61d14
sourceName: Medium
sourceUrl: https://medium.com/
author: Shpetim Selaci
date: Jun 17, 2019
img: /img/examples/e2e-tests-without-boring-parts.png
- title: "Reliable test automation with Cypress.io"
url: https://www.linkedin.com/pulse/reliable-test-automation-cypressio-abdi-saeed/
sourceName: LinkedIn
sourceUrl: https://www.linkedin.com/pulse/
author: Abdi Saeed
date: Jun 17, 2019
img: /img/examples/reliable-test-automation-cypress.png
- title: "Running Cypress tests with TestContainers for a Spring Boot with Thymeleaf application"
url: https://wimdeblauwe.wordpress.com/2019/06/15/running-cypress-tests-with-testcontainers-for-a-spring-boot-with-thymeleaf-application/
sourceName: Wim Deblauwe's Blog
sourceUrl: https://wimdeblauwe.wordpress.com/
author: Wim Deblauwe
date: Jun 15, 2019
img: /img/examples/wimdeblauwe-testcontainer-spring-boot-thymeleaf-cypress.png
- title: "Unit testing APEX – 3 methods to bypass login (with Cypress.io)"
url: https://insum.ca/unit-testing-apex-3-methods-bypass-login-using-cypress-io/
sourceName: Insum
sourceUrl: https://insum.ca/
author: Hayden Hudson
date: Jun 14, 2019
img: /img/examples/insum-unit-test-apex-cypress.png
- title: "Using Cypress to Write Tests for a React Application"
url: https://css-tricks.com/using-cypress-to-write-tests-for-a-react-application/
sourceName: CSS Tricks
sourceUrl: https://css-tricks.com/
author: Kingsley Silas
date: Jun 12, 2019
img: /img/examples/csstricks-write-tests-react-app.png
- title: "Writing e2e tests using Cypress"
url: https://engineering.hashnode.com/writing-e2e-tests-using-cypress-cjwm1xfxx003osws1dlxp3e5s
sourceName: Hashnode Engineering
sourceUrl: https://engineering.hashnode.com/
author: Aravind
date: Jun 7, 2019
img: /img/examples/hashnode-e2e-tests-cypress.png
- title: "How to test Next.js apps"
url: https://buttercms.com/blog/how-to-test-nextjs-apps
sourceName: ButterCMS
sourceUrl: https://buttercms.com/
author: Nirmalya Ghosh
date: Jun 5, 2019
img: /img/examples/buttercms-test-nextjs-apps.png
- title: "React, Cypress.io and Applitools for Functional and Visual Testing"
url: https://applitools.com/blog/react-cypress-visual-testing
sourceName: Applitools
sourceUrl: https://applitools.com/
author: Bilal Haidar
date: Jun 3, 2019
img: /img/examples/applitools-react-cypress-visual-testing.png
- title: "Adventures in End-to-End Testing with Cypress"
url: https://engineering.brighthr.com/blog-posts/adventures-in-end-to-end-testing-with-cypress/
sourceName: Bright HR
sourceUrl: https://engineering.brighthr.com/
author: Daniel Smith
date: Jun 03, 2019
img: /img/examples/bright-hr-e2e-with-cypress.png
- title: "Testing accessibility with Cypress"
url: https://dev.to/stereobooster/testing-accessibility-with-cypress-2dfo
sourceName: DEV.to
sourceUrl: https://dev.to
author: Stereobooster
date: Jun 1, 2019
img: /img/examples/stereobooster-testing-accessibility-cypress.png
- title: "Visual Testing with Cypress"
url: https://medium.com/briebug-blog/visual-testing-with-cypress-9a0b7443e427
sourceName: Medium
sourceUrl: https://medium.com/
author: Jesse Sanders
date: May 30, 2019
img: /img/examples/briebug-visual-testing-with-cypress.png
- title: "End-To-End Testing React Applications With Cypress"
url: https://formidable.com/blog/2019/cypress/
sourceName: Formidable
sourceUrl: https://formidable.com/
author: Parker Ziegler
date: May 29, 2019
img: /img/examples/formidable-end-to-end-testing-react-apps-cypress.png
- title: "Cypress: Page Object Structure w/ Examples"
url: http://blerdeyeview.com/cypress-page-objects/
sourceName: Blerd Eye View
sourceUrl: http://blerdeyeview.com/
author: Courtney Hurt
date: May 24, 2019
img: /img/examples/page-object-structure-cypress.png
- title: "Réaliser des tests fonctionnels avec Cypress"
url: https://blog.ineat-conseil.fr/2019/05/realiser-des-tests-fonctionnels-avec-cypress/
sourceName: Ineat Blog
sourceUrl: https://blog.ineat-conseil.fr/
author: "Nicolas Fourré"
date: May 24, 2019
img: /img/examples/ineat-blog-realiser-des-tests-fonctionnels-avec-cypress.png
- title: "Learning Visual Testing as a Junior Developer with Applitools and Cypress"
url: https://dev.to/megsachdev/learning-visual-testing-as-a-junior-developer-with-applitools-and-cypress-h3c
sourceName: DEV.to
sourceUrl: https://dev.to/
author: Megha Sachdev
date: May 23, 2019
img: /img/examples/devto-learn-visual-testing-applitools-cypress.png
- title: "Why we should start writing our visual unit tests with Cypress"
url: https://medium.com/razroo/visual-unit-tests-with-cypress-6f310095e10b
sourceName: Medium
sourceUrl: https://medium.com/
author: Aphinya Dechalert
date: May 20, 2019
img: /img/examples/razroo-visual-unit-tests-cypress.png
- title: "The new Chromium-based Microsoft Edge for Mac has been leaked — And it works with Cypress"
url: https://blog.you54f.com/2019/05/16/the-new-chromium-based-microsoft-edge-for-mac-has-been-leaked%e2%80%8a-%e2%80%8aand-it-works-with-cypress-and-now-you-can-test-it-too/
sourceName: YOU54F
sourceUrl: https://blog.you54f.com/
author: YOU54F
date: May 16, 2019
img: /img/examples/you54f-chromium-microsoft-edge-cypress.png
- title: "Gleb Bahmutov: When I First Saw the Cypress.io Test Runner, I Knew It Was Special"
url: https://medium.com/@amsterdamjs/gleb-bahmutov-when-i-first-saw-the-cypress-io-test-runner-i-knew-it-was-special-ae67615e0028
sourceName: Medium
sourceUrl: https://medium.com/
author: Amsterdam JSNation
date: May 15, 2019
img: /img/examples/amsterdamjs-gleb-bahmutov-interview.png
- title: "5 awesome tricks to turbocharge your React automated tests"
url: https://medium.com/craft-academy/5-awesome-tricks-to-turbocharge-your-react-automated-tests-147776289c55
sourceName: Medium
sourceUrl: https://medium.com/
author: Aditya Naik
date: May 9, 2019
img: /img/examples/craft-academy-awesome-tricks-turbocharge-react-tests.png
- title: "How to hack log-in in React Automated testing"
url: https://medium.com/craft-academy/how-to-leverage-localstorage-in-cypress-testing-3fdc04628868
sourceName: Medium
sourceUrl: https://medium.com/
author: Greg Kallai
date: May 6, 2019
img: /img/examples/craft-academy-hack-login-react-automated-testing.png
- title: "End-to-End testing with Cypress"
url: https://medium.com/better-practices/end-to-end-testing-with-cypress-bfcd59633f1a
sourceName: Medium
sourceUrl: https://medium.com/
author: Steve Fuller
date: May 3, 2019
img: /img/examples/better-practices-testing-with-cypress.png
- title: "End-to-End Testing Web Apps: The Painless Way"
url: https://mtlynch.io/painless-web-app-testing/
sourceName: Michael Lynch
sourceUrl: https://mtlynch.io/
author: Michael Lynch
date: May 1, 2019
img: /img/examples/end-to-end-testing-apps-painless-way.png
- title: "How to test Vue apps with the popular Cypress framework"
url: https://dev.to/napoleon039/how-to-test-vue-apps-with-the-popular-cypress-framework-4jfg
sourceName: DEV.to
sourceUrl: https://dev.to
author: Nihar Raote
date: Apr 29, 2019
img: /img/examples/test-vue-apps-with-cypress.png
- title: "Testing with Cypress"
url: https://medium.com/@genedarocha/testing-with-cypress-8b62debe4ac6
sourceName: "Medium"
sourceUrl: https://medium.com/@genedarocha
author: Gene Da Rocha
date: Apr 27, 2019
img: /img/examples/testing-in-cypress-palm-trees.jpg
- title: "Pragmatic Front-End Testing Strategies (3)"
url: https://medium.com/@toastui/pragmatic-front-end-testing-strategies-3-969469349043
sourceName: Medium
sourceUrl: https://medium.com/@toastui
author: DongWoo Kim
date: Apr 19, 2019
img: /img/examples/pragmatic-front-end-testing-strategies-3.png
- title: "How We Enhanced Our End-to-End Testing with Cypress.io"
url: https://www.monterail.com/blog/end-to-end-testing-with-cypress
sourceName: Monterail
sourceUrl: https://www.monterail.com/blog/end-to-end-testing-with-cypress
author: Robert Gacek
date: Apr 12, 2019
img: /img/examples/enhanced-end-to-end-testing-with-cypress.png
- title: "What Is Front End Testing in 2019?"
url: https://applitools.com/blog/what-is-front-end-testing-in-2019
sourceName: Applitools
sourceUrl: https://applitools.com/blog/
author: Michael Battat
date: Apr 9, 2019
img: /img/examples/whats-frontend-testing-applitools.png
- title: "Visual UI testing with Percy.io + Cypress (Graph, PDF, DOM UI changes can now be automated)"
url: https://medium.com/executeautomation/visual-ui-testing-with-percy-io-cypress-graph-pdf-dom-ui-changes-can-now-be-automated-186aafb53517
sourceName: Medium
sourceUrl: https://medium.com/executeautomation
author: Karthik kk
date: Apr 8, 2019
img: /img/examples/visual-ui-testing-percy-cypress.png
- title: "Testing using Cypress in JavaScript"
url: https://confluence.xpand-it.com/display/public/XRAY/Testing+using+Cypress+in+JavaScript
sourceName: Confluence
sourceUrl: https://confluence.xpand-it.com/display/public/XRAY/Xray+Documentation+Home
author: Sergio Freire
date: Apr 01, 2019
img: /img/examples/testing-using-cypress-in-javascript.png
- title: "How to Create and Use Fixtures in Cypress Tests"
url: https://chipcullen.com/how-to-create-and-use-fixtures-in-cypress-tests/
sourceName: Chip Cullen
sourceUrl: https://chipcullen.com
author: Chip Cullen
date: Mar 28, 2019
img: /img/examples/create-use-fixtures-in-cypress.png
- title: "Cypress Parallelization — Case Study + Results"
url: https://valor-software.com/articles/cypress-parallelization-case-study-results.html
sourceName: Valor Software
sourceUrl: https://valor-software.com/articles/
author: Ludmila Nesvitiy
date: Mar 25, 2019
img: /img/examples/cypress-parallelization-case-study-results.png
- title: "Cypress on AWS Lambda Part 1"
url: https://stuartsandine.com/cypress-on-aws-lambda-part-1/
sourceName: Stuart Sandine
sourceUrl: https://stuartsandine.com
author: Stuart Sandine
date: Mar 15, 2019
img: /img/examples/cypress-aws-lambda.png
- title: "Write tests without the pain"
url: https://slides.com/simonhen/cypress
sourceName: Slides
sourceUrl: https://simonhenrotte.com/
author: Simon Henrotte
date: Mar 7, 2019
img: /img/examples/write-tests-without-pain.png
- title: "Testing an email workflow from end to end with Cypress"
url: https://humble.dev/testing-an-email-workflow-from-end-to-end-with-cypress
sourceName: humbledev
sourceUrl: https://humble.dev/
author: Maxime Khoy
date: Mar 6, 2019
img: /img/examples/testing-email-workflow-with-cypress.png
- title: "Configuring Cypress in CI with Azure DevOps Pipelines"
url: https://mariocardinal.wordpress.com/2019/03/05/configuring-cypress-in-ci-with-azure-devops-pipelines/
sourceName: Mario Cardinal
sourceUrl: https://mariocardinal.wordpress.com/
author: Mario Cardinal
date: Mar 5, 2019
img: /img/examples/ci-with-azure-devops.png
- title: "How to poll a Gmail inbox using cypress.io"
url: https://medium.com/@levz0r/how-to-poll-a-gmail-inbox-in-cypress-io-a4286cfdb888
sourceName: Medium
sourceUrl: https://medium.com/@levz0r
author: Lev Gelfenbuim
date: Mar 4, 2019
img: /img/examples/poll-gmail-inbox-in-cypress.png
- title: "Cypress.io: A hands-on overview"
url: https://medium.com/@klmlfl/cypress-io-a-hands-on-overview-ad4d498944ee
sourceName: Medium
sourceUrl: https://medium.com/@klmlfl
author: Shaban Rahman
date: Mar 2, 2019
img: /img/examples/hands-on-overview-cypress.png
- title: "Angular: Adding Cypress UI Tests to Your DevOps Pipeline"
url: https://medium.com/ngconf/angular-adding-cypress-ui-tests-to-your-devops-pipeline-c7613e67d37d
sourceName: Medium
sourceUrl: https://medium.com/ngconf
author: Justin James
date: Feb 20, 2019
img: /img/examples/angular-adding-cypress-ui-testing.png
- title: "Running Cypress Tests in Parallel"
url: https://testdriven.io/blog/running-cypress-tests-in-parallel/
sourceName: TestDriven
sourceUrl: https://testdriven.io/
author: Michael Herman
date: Feb 19, 2019
img: /img/examples/running-cypress-tests-in-parallel.png
- title: "I saw Jesse Sanders speak at AngularMN on Cypress testing on Wednesday night"
url: http://tom-jaeschke.blogspot.com/2019/02/i-saw-jesse-sanders-speak-at-angularmn.html
sourceName: Spaghetti Tom
sourceUrl: http://tom-jaeschke.blogspot.com/
author: Tom Jaeschke
date: Feb 10, 2019
img: /img/examples/jesse-sanders-at-angularmn-on-cypress.png
- title: "I'm so done with E2E Testing....Until Now"
url: http://briebug.github.io/presentations/ng-meetup/2018/10/cypress/#/
sourceName: Briebug
sourceUrl: https://www.briebug.github.io/
author: Jesse Sanders
date: Feb 7, 2019
img: /img/examples/Im-so-done.jpg
- title: "Modern Front-End Testing with Cypress"
url: https://testdriven.io/blog/modern-frontend-testing-with-cypress/
sourceName: TestDriven
sourceUrl: https://testdriven.io/
author: Michael Herman
date: Jan 31, 2019
img: /img/examples/modern-front-end-testing-with-cypress.png
- title: "Tendências para a área de Quality Assurance em 2019"
url: https://medium.com/invillia-insights/tend%C3%AAncias-para-a-%C3%A1rea-de-quality-assurance-em-2019-51c61b36e955
sourceName: Medium
sourceUrl: https://medium.com/invillia-insights
author: Thiago Grespi
date: Jan 30, 2019
img: /img/examples/tendencias-quality-assurance.png
- title: "Cypress com Cucumber nos testes E2E"
url: https://www.concrete.com.br/2019/01/24/cypress-com-cucumber-nos-testes-e2e/
sourceName: Concrete
sourceUrl: https://www.concrete.com.br/
author: Lucas Fraga
date: Jan 24, 2019
img: /img/examples/cypress-com-cucumber.jpg
- title: "Testes E2E com CyPress no Quasar Framework"
url: https://www.concrete.com.br/2019/01/24/cypress-com-cucumber-nos-testes-e2e/
sourceName: iMasters
sourceUrl: https://imasters.com.br/
author: Patrick Pinheiro Mmonteiro
date: Jan 22, 2019
img: /img/examples/cypress-quasar-framework.jpg
- title: "End-to-End Testing with Cypress and Auth0"
url: https://auth0.com/blog/end-to-end-testing-with-cypress-and-auth0
sourceName: Auth0
sourceUrl: https://auth0.com
author: Dan Lourenço
date: Jan 21, 2019
img: /img/examples/e2e-with-auth0.jpg
- title: "What I’ve Learned Using Cypress.io for the Past Three Weeks"
url: https://levelup.gitconnected.com/what-ive-learnt-using-cypress-io-for-the-past-three-weeks-c1597999cd2f
sourceName: gitconnected
sourceUrl: https://levelup.gitconnected.com/
author: Cameron Choi
date: Jan 18, 2019
img: /img/examples/what-i-learned-cypress-3-weeks.jpg
- title: "Integrating Cypress.io into Solar Monkey's codebase"
url: http://engineering.solarmonkey.nl/blog/integrating-cypress-into-solar-monkey/
sourceName: Solar Monkey Engineering
sourceUrl: http://engineering.solarmonkey.nl/
author: Solar Monkey Engineering
date: Jan 18, 2019
img: /img/examples/cypress-into-solar-monkey-codebase.png
- title: "Introducción a la automatización de tests E2E con Cypress.io"
url: https://blog.irontec.com/introduccion-automatizacion-tests-e2e-cypress-io/
sourceName: irontec
sourceUrl: https://blog.irontec.com/
author: Leire Iturregi
date: Jan 15, 2019
img: /img/examples/Introduccion-a-la-automatizacion-de-tests-E2E-con-Cypress.jpg
- title: "Unit testing Angular components with Cypress"
url: https://medium.com/joolsoftware/unittesting-angular-components-with-cypress-202a38d9f81a
sourceName: Jool Software Professionals
sourceUrl: https://medium.com/joolsoftware
author: David Kingma
date: Jan 14, 2019
img: /img/examples/unit-test-angular-with-cypress.jpg
- title: "Cypress should callback"
url: https://glebbahmutov.com/blog/cypress-should-callback/
sourceName: Gleb Bahmutov Blog
sourceUrl: https://glebbahmutov.com/blog
author: Gleb Bahmutov
date: Jan 2, 2019
img: /img/examples/cypress-should-callback-typescript.jpg
- title: End-to-End Testing with Cypress
url: http://bootcamp.burlingtoncodeacademy.com/lessons/agile/cypress
sourceName: Burlington Code Academy
sourceUrl: http://bootcamp.burlingtoncodeacademy.com
author: Alex Chaffee
date: Dec 18, 2018
img: /img/examples/burlington-slides.png
- title: "How to Capture Browser Network Traffic (XHR) with Cypress"
url: https://www.testingexcellence.com/capture-network-traffic-xhr-cypress/
sourceName: Testing Excellence
sourceUrl: https://www.testingexcellence.com/
author: Amir Ghahrai
date: Dec 2, 2018
img: /img/examples/how-to-capture-browser-network-traffic-XHR-with-Cypress.jpg
- title: "How to make and test your own React drag and drop list with 0 dependencies"
url: https://medium.freecodecamp.org/how-to-make-and-test-your-own-react-drag-and-drop-list-with-0-dependencies-6fb461603780
sourceName: freeCodeCamp
sourceUrl: https://medium.freecodecamp.org/
author: Seif Ghezala
date: Dec 1, 2018
img: /img/examples/testing-drag-and-drop-react-cypress.jpg
- title: Testing Your Frontend with Cypress.io Framework
url: https://snipcart.com/blog/frontend-testing-cypress
sourceName: Snipcart
sourceUrl: https://snipcart.com/
author: Michael Yagudaev
date: Nov 29, 2018
img: /img/examples/snipcart.jpg
- title: "Building an optimised E2E flow system with Cypress"
url: https://medium.com/elements/building-an-optimised-e2e-flow-system-with-cypress-be119025c476
sourceName: Elements blog
sourceUrl: https://medium.com/elements
date: November 23, 2018
author: Luis Miguel Fernández
img: /img/examples/optimized-e2e-flow-system-with-cypress.jpg
- title: "CircleCI launches Orbs, a package manager for software delivery automation"
url: https://techcrunch.com/2018/11/07/circleci-launches-orbs-a-package-manager-for-software-delivery-automation/
sourceName: TechCrunch
sourceUrl: https://techcrunch.com
author: Frederic Lardinois
date: Nov 12, 2018
img: /img/examples/circleci-launches-orbs.jpg
- title: "Strava’s New End-to-End Testing Setup"
url: https://medium.com/strava-engineering/stravas-new-end-to-end-testing-setup-18b541727555
sourceName: Strava Engineering
sourceUrl: https://medium.com/strava-engineering
author: Mark Hurwitz
date: Oct 11, 2018
img: /img/examples/strava-engineering-end-to-end-cypress.jpg
- title: Angular Testing – Protractor vs Cypress
url: https://techblog.fexcofts.com/2018/09/24/end-to-end-e2e-angular-testing-protractor-vs-cypress/
sourceName: FEXCO Technology Solutions
sourceUrl: https://techblog.fexcofts.com/
author: Tulio Castro
date: Sep 24, 2018
img: /img/examples/e2e-app.jpg
- title: Test Driven Form Development with Cypress
url: https://palmer.net/blog/test-driven-form-development-with-cypress
sourceName: The Palmer Group
sourceUrl: https://www.gravitywell.co.uk/
date:
author: Jack Cross
img: /img/examples/the-palmer-group.jpg
- title: Using Cypress.io
url: https://www.gravitywell.co.uk/labs/using-cypress.io
sourceName: Gravitywell
sourceUrl: https://www.gravitywell.co.uk/
date: Oct 24, 2018
author: Luke Baker
img: /img/examples/gravitywell.png
- title: Cypress.io advanced setup
url: http://dev.topheman.com/cypress-io-advanced-setup/
sourceName: Topheman.js
sourceUrl: http://dev.topheman.com/
date: Oct 19, 2018
author: Christophe Rosset
img: /img/examples/topheman.png
- title: "Cypress vs Selenium Webdriver: Which is Better for You?"
url: https://applitools.com/blog/cypress-vs-selenium-webdriver-which-is-better-for-you
sourceName: applitools
sourceUrl: https://applitools.com/blog
date: Oct 16, 2018
author: Gil Tayar
img: /img/examples/cypress-vs-selenium.png
- title: "End-to-End Testing with Cypress"
url: https://deliciousbrains.com/cypress-testing/
sourceName: Delicious Brains
sourceUrl: https://deliciousbrains.com/blog/
date: Oct 2, 2018
author: Peter Tasker
img: /img/examples/end-to-end-testing-with-cypress.png
- title: Cypress.io - A JavaScript End To End Testing Tool
url: https://www.c-sharpcorner.com/article/getting-started-with-cypress-io/
sourceName: C# Corner
sourceUrl: https://www.c-sharpcorner.com
date: Sep 10, 2018
author: Khaja Moizuddin
img: /img/examples/c-sharp-corner-end-to-end-cypress.png
- title: Improving our Cypress test automation time by 3x
url: https://blog.hasura.io/improving-our-cypress-test-automation-time-by-3x-e79f21313610
sourceName: Medium
sourceUrl: https://blog.hasura.io/
date: Sep 10, 2018
author: Praveen Durairaj
img: /img/examples/improving-our-cypress-tests.png
- title: "An Intro to Web Site Testing with Cypress"
url: https://css-tricks.com/an-intro-to-web-app-testing-with-cypress-io/
sourceName: Medium
sourceUrl: https://css-tricks.com/
date: Aug 29, 2018
author: Devon Campbell
img: /img/examples/intro-to-website-testing.png
- title: "Slack App Testing"
url: https://medium.com/coveryourads/slack-bot-testing-e7ba6f91a98e
sourceName: Medium
sourceUrl: https://www.coveryourads.io/
date: Aug 27, 2018
author: Matthew Ledom
img: /img/examples/end-to-end-slack-app-testing-with-cypress.png
- title: "Where Am I: URL Assertions with Cypress"
url: https://hashrocket.com/blog/posts/where-am-i-url-assertions-with-cypress
sourceName: HashRocket
sourceUrl: https://hashrocket.com/blog
date: Aug 23, 2018
author: Josh Branchaud
img: /img/examples/where-am-i.png
- title: "Integrate an awesome software testing tool, Cypress.io, into a React app in less than 5 minutes"
url: https://medium.com/@johnryancottam/integrate-an-awesome-software-testing-tool-cypress-io-into-a-react-app-in-less-than-5-minutes-b4c8bbf1f71c
sourceName: Medium
sourceUrl: https://medium.com/@johnryancottam
date: Aug 15, 2018
author: John Ryan Cottam
img: /img/examples/integrate-an-awesome-software.png
- title: "How To Run Browser Tests via Cypress in Your CI/CD Pipeline with AWS CodeBuild"
url: https://blog.kylegalbraith.com/2018/08/14/how-to-run-browser-tests-via-cypress-in-your-cicd-pipeline-with-aws-codebuild/
sourceName: blog.kylegalbraith.com
sourceUrl: https://blog.kylegalbraith.com/
date: Aug 14, 2018
author: Kyle Galbraith
img: /img/examples/kyle-galbraith-how-to-run.png
- title: "Spend more time coding, less time testing: Our Investment in Cypress.io"
url: https://www.linkedin.com/pulse/spend-more-time-coding-less-testing-our-investment-michael-droesch
sourceName: LinkedIn Pulse
sourceUrl:
date: Aug 6, 2018
author: Michael Droesch
img: /img/examples/more-time-coding-less-time-testing.png
- title: "Setting up Bitbucket Pipelines with proper caching of NPM and Cypress"
url: https://medium.com/@ondrej.janosik42/setting-up-bitbucket-pipelines-with-proper-caching-of-npm-and-cypress-74d033888186
sourceName: Medium
sourceUrl: https://medium.com/@ondrej.janosik42
date: Aug 5, 2018
author: Ondrej Janosik
img: /img/examples/setting-up-bitbucket.png
- title: "Testing with Cypress.io"
url: https://medium.com/@grant.glidewell/testing-with-cypress-io-10ca7e4984e0
sourceName: Medium
sourceUrl: https://medium.com/@grant.glidewell
date: Jul 30, 2018
author: Grant Glidewell
img: /img/examples/testing-with-cypress-io.png
- title: "Our Investment in Cypress.io"
url: https://medium.com/@er_17361/our-investment-in-cypress-io-bc974155838d
sourceName: Medium
sourceUrl: https://medium.com/@er_17361
date: Jul 24, 2018
author: Las Olas VC (a.k.a. LOVC)
img: /img/examples/our-investment-in-cypress.png
- title: "Testing Functionality With Cypress.io"
url: https://www.sitefinitysteve.com/blog/code/2018/07/20/testing-functionality-with-cypress-io
sourceName: Sitefinity Steve
sourceUrl: https://www.sitefinitysteve.com/
date: Jul 20, 2018
author: Sitefinity Steve
img: /img/examples/testing-functionality-with-cypress.png
- title: "Getting Cypress JS to Interact with CKEditor"
url: https://medium.com/@nickdenardis/getting-cypress-js-to-interact-with-ckeditor-f46eec01132f
sourceName: Medium
sourceUrl: https://medium.com/@nickdenardis
date: Jul 15, 2018
author: Nick DeNardis
img: /img/examples/getting-cypress-to-interact.png
- title: "Cypress and AuthO"
url: https://blog.johnnyreilly.com/2018/07/cypress-and-auth0.html
sourceName: blog.johnnyreilly.com
sourceUrl: https://blog.johnnyreilly.com/
date: Jul 9, 2018
author: John Reilly
img: /img/examples/cypress-autho.png
- title: "Cypress.io Raises $4 Million for Front End Automated Testing"
url: https://www.businesswire.com/news/home/20180626005183/en/Cypress.io-Raises-4-Million-Front-Automated-Testing
sourceName: Business Wire
sourceUrl: https://www.businesswire.com/portal/site/home/news/
date: June 26, 2018
author: Business Wire
img: /img/examples/business-wire-4mil.png
- title: "Comparing JavaScript Browser Automation Frameworks: Selenium Versus Webdriver.io Versus Puppeteer"
url: https://applitools.com/blog/comparing-javascript-browser-automation-frameworks
sourceName: applitools
sourceUrl: https://applitools.com/blog/
date: June 25, 2018
author: Gil Tayar
img: https://applitools.com/blog/wp-content/uploads/2018/06/so-many-choices-s.jpg
- title: "Selenium vs. Cypress: Is WebDriver on Its Way Out?"
url: https://crossbrowsertesting.com/blog/test-automation/selenium-vs-cypress/
sourceName: CrossBrowserTesting
sourceUrl: https://crossbrowsertesting.com/blog/
date: June 12, 2018
author: Alex McPeak
img: /img/examples/selenium-vs-cypress-webdriver-on-its-way.png
- title: "How We Built Our Automated UI Testing Framework"
url: https://www.endgame.com/blog/technical-blog/how-we-built-our-automated-ui-testing-framework
sourceName: Endgame
sourceUrl: https://www.endgame.com/
date: Jun 11, 2018
author: Ai Santos
img: /img/examples/how-we-built-our-automated-ui-testing.jpg
- title: "Why you should switch to Cypress for modern web testing?"
url: https://medium.com/@shivambharadwaj/https-medium-com-shivambharadwaj-why-you-should-switch-to-cypress-for-modern-web-testing-5d3739a19e6
sourceName: Medium
sourceUrl: https://medium.com/
date: Jun 10, 2018
author: Shivam Bharadwaj
img: /img/examples/switch-to-cypress.jpg
- title: "Cypress: Write Automated Tests to Validate Web Applications"
url: https://auth0.com/blog/cypress-write-automated-tests-to-validate-web-applications/
sourceName: Auth0
sourceUrl: https://auth0.com/
date: Jun 5, 2018
author: RC
img: /img/examples/tests-to-validate-web-applications.jpg
- title: "Secure secrets in Cypress with the Manifold CLI"
url: https://blog.manifold.co/secure-secrets-in-cypress-with-the-manifold-cli-6cd144b3be69
sourceName: Manifold
sourceUrl: https://blog.manifold.co/
date: May 31, 2018
author: Sam Slotsky
img: /img/examples/secure-secrets-manifold-cli.jpg
- title: "Start your end to end testing with Angular and Cypress"
url: https://offering.solutions/blog/articles/2018/05/27/end-to-end-testing-with-angular-cypress/
sourceName: Offering Solutions Software
sourceUrl: https://offering.solutions/blog/
date: May 27, 2018
author: Fabian Gosebrink
img: /img/examples/e2e-with-angular-and-cypress.jpg
- title: "Testing React Apps with Cypress: A brief guide on how to run End-To-End testing on React apps with Cypress."
url: https://blog.bitsrc.io/testing-react-apps-with-cypress-658bc482678
sourceName: Bits and Pieces
sourceUrl: https://blog.bitsrc.io/
date: May 21, 2018
author: Rajat S
img: /img/examples/testing-react-apps-with-cypress.jpg
- title: "Running e2e tests with Selenium *AND* Cypress"
url: https://medium.com/@wataruoguchi/running-e2e-tests-with-selenium-and-cypress-1de69b95d936
sourceName: Medium
sourceUrl: https://medium.com/
date: May 18, 2018
author: Wataru Oguchi
img: /img/examples/e2e-with-selenium-and-cypress.jpg
- title: "Dynamic XHR responses recording & stubbing with Cypress"
url: https://medium.com/ax2-inc/dynamic-xhr-responses-recording-stubbing-with-cypress-9257d4f730cd
sourceName: Medium
sourceUrl: https://medium.com/
date: May 15, 2018
author: Paul Gascou-Vaillancourt
img: /img/examples/dynamic-xhr-responses-with-cypress.jpg
- title: "Cypress.io - A JavaScript E2E Testing Framework"
url: http://committed.software/posts/cypress/cypress/
sourceName: Committed
sourceUrl: http://committed.software/
date: May 9, 2018
author: Matt Copas
img: /img/examples/a-javascript-e2e-testing-framework-committed.jpg
- title: "Testing Angular with Cypress and Docker"
url: https://testdriven.io/testing-angular-with-cypress-and-docker
sourceName: testdriven.io
sourceUrl: https://testdriven.io/
date: May 7, 2018
author: Michael Herman
img: /img/examples/testing-angular-with-cypress-and-docker.jpg
- title: "End-To-End Testing A VueJS HackerNews Clone"
url: https://medium.com/js-dojo/end-to-end-testing-a-vuejs-hackernews-clone-23b9415fd5c5
sourceName: Vue.js Developers
sourceUrl: https://medium.com/js-dojo
date: May 7, 2018
author: Gleb Bahmutov
img: /img/examples/vue-js-hackernews-clong.jpg
- title: "Cypress vs. Selenium, is this the end of an era?"
url: https://automationrhapsody.com/cypress-vs-selenium-end-era/
sourceName: Automation Rhapsody
sourceUrl: https://automationrhapsody.com/
date: Apr 26, 2018
author: Lyudmil Latinov
img: /img/examples/cypress-vs-selenium-end-of-era.jpg
- title: "What if your e2e tests generated your user documentation?"
url: https://hackernoon.com/what-if-your-e2e-tests-generated-your-user-documentation-baefe3ebaee9
sourceName: Hackernoon
sourceUrl: https://hackernoon.com/
date: Apr 23, 2018
author: Mike Nikles
img: /img/examples/test-generated-documentation.jpg
- title: "WiD - Cypress e2e testing"
url: https://wetainment.com/wid-2018-04-11/
sourceName: "wetainment"
sourceUrl: https://wetainment.com/
date: Apr 11, 2018
author: Christoph Benjamin Weber
img: /img/examples/cloud-and-hand.jpg
- title: "Cypress.io — Use the Log API with custom commands"
url: https://medium.com/@NicholasBoll/cypress-io-use-the-log-api-with-custom-commands-b4bffca0d4c5
sourceName: "Medium @NicholasBoll"
sourceUrl: https://medium.com/@NicholasBoll
date: Mar 18, 2018
author: Nicholas Boll
img: /img/examples/cy-log-api-commands.jpg
- title: "Using Jest matchers in Cypress"
url: https://medium.com/@NicholasBoll/using-jest-matchers-in-cypress-5e8e7281f5dd
sourceName: "Medium @NicholasBoll"
sourceUrl: https://medium.com/@NicholasBoll
date: Mar 18, 2018
author: Nicholas Boll
img: /img/examples/jest-assertion-matcher-cypress.jpg
- title: "9 top open-source testing automation frameworks: How to choose"
url: https://techbeacon.com/9-top-open-source-testing-automation-frameworks-how-choose
sourceName: "TechBeacon"
sourceUrl: https://techbeacon.com/
date: Mar 6, 2018
author: Joe Colantonio
img: /img/examples/top-testing-automation-frameworks.png
- title: "Comparing Vue Component Testing Tools"
url: https://codingitwrong.com/2018/03/04/comparing-vue-component-testing-tools.html
sourceName: Coding It Wrong
sourceUrl: https://codingitwrong.com/
date: Mar 4, 2018
author: Josh Justice
img: /img/examples/comparing-vue-component-testing-tools.jpg
- title: "How to write tests and maintain your sanity"
url: https://blog.manifold.co/testing-sucks-here-is-how-to-make-it-better-7af1ff93cc9
sourceName: "Manifold"
sourceUrl: https://blog.manifold.co/
date: Feb 26, 2018
author: Daniel Enman
img: /img/examples/how-to-write-tests-and-maintina-sanity.png
- title: "✅ AssertJS 2018 Passed the Test ✅"
url: https://medium.com/@michaelsholty/assertjs-2018-passed-the-test-f456bc20161
sourceName: "Medium @michaelsholty"
sourceUrl: https://medium.com/@michaelsholty
date: Feb 24, 2018
author: Michael Sholty