-
Notifications
You must be signed in to change notification settings - Fork 25
/
fiddles.json
4838 lines (4838 loc) · 195 KB
/
fiddles.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
[
{
"title": "Actions type",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions focus",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions blur",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions clear",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions submit",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions click a single button",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions click on a canvas",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions click on multiple elements",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions click on disabled element",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions click waits for element to be visible",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions click after assertion",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions dblclick",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions rightclick",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions check",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions check an already checked input",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions checked selector for radio input",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions checked selector for checkbox elements",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions uncheck",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions select",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions scrollIntoView",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions scrollTo",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions trigger",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Actions trigger a click event on a disabled button",
"filename": "docs/commands/actions.md",
"created": "2020-04-13T21:31:02.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/actions.html"
},
{
"title": "Aliasing .as() - alias a DOM element for later use",
"filename": "docs/commands/aliasing.md",
"created": "2020-04-24T14:49:26.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/aliasing.html"
},
{
"title": "Aliasing .as() - query the alias",
"filename": "docs/commands/aliasing.md",
"created": "2020-04-24T14:49:26.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/aliasing.html"
},
{
"title": "Aliasing .as() - alias a route for later use",
"filename": "docs/commands/aliasing.md",
"created": "2020-04-24T14:49:26.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/aliasing.html"
},
{
"title": "Aliasing .as() - alias a value for later use",
"filename": "docs/commands/aliasing.md",
"created": "2020-04-24T14:49:26.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/aliasing.html"
},
{
"title": "Aliasing .as() - alias is saved in the test context",
"filename": "docs/commands/aliasing.md",
"created": "2020-04-24T14:49:26.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/aliasing.html"
},
{
"title": "Aliasing Static vs query type query alias type",
"filename": "docs/commands/aliasing.md",
"created": "2020-04-24T14:49:26.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/aliasing.html"
},
{
"title": "Aliasing Static vs query type static alias type",
"filename": "docs/commands/aliasing.md",
"created": "2020-04-24T14:49:26.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/aliasing.html"
},
{
"title": "Assertions Implicit Assertions .should() - make an assertion about the current subject",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .and() - chain multiple assertions together",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - keeps the original subject",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - have.property changes the subject",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - multiple properties",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - have.prop yields the value",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - have text value matching a regular expression",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - have.attr changes the subject",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - have.attr with a dot",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - have.attr matching part of the string",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - have.prop changes the subject",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - NaN",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - input elements have value",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - input elements with numeric value",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - non-input elements contain text",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - HTML element tag",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - two elements",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - match a regular expression",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - contain.text",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - trim and convert",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - text with newlines",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - html entities",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - visible non-empty text",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - partial text match",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - have.text vs contain",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - text matching the regular expression",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - match number",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - convert text to number",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - number within range",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - OR match",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - OR match using oneOf",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - one of the elements has the text",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions Text .should() - text should not be present",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - visibility of multiple elements",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - elements becoming invisible",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - placeholder attribute",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - disabled element",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Implicit Assertions .should() - data attributes",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Not include property",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Explicit Assertions expect - make an assertion about a specified subject",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Explicit Assertions expect - assert a substring",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Explicit Assertions expect - compare two lists",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Explicit Assertions expect - NaN",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Explicit Assertions assert - assert shape of an object",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Should(cb) pass your own callback function to should()",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Should(cb) finds element by class name regex",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Should(cb) can throw any error",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Should(cb) matches unknown text between two elements",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Should(cb) retries the should callback until assertions pass",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Should(cb) retries in vain",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Truthy assertion",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Satisfy a predicate",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Element does not exist",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Multiple assertions split the command",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Element has focus",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Checkbox is checked or not checked",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Text include or have text",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Text multiple elements",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Array assertions confirm the value is an array",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Array assertions confirm a primitive value is an array",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Array assertions confirm an EXACT object is in an array",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Array assertions confirm a partial object is in an array",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Array assertions confirm items in an array",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Array assertions comparing arrays",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Objects has a property",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Objects multiple properties",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Objects partial match",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Objects Multiple variants",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Objects has a method",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Approximate value",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions The font size assertion",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Adding assertions multiple assertions",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Adding assertions adding custom assertion",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Check against undefined",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Assertions Use strongest assertion",
"filename": "docs/commands/assertions.md",
"created": "2020-04-26T14:17:38.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/assertions.html"
},
{
"title": "Connectors each print each element",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors each iterate over numbers",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors each does not change the subject",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors each use cy commands inside the callback",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors its number of elements",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors its array index",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors its retries automatically",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors its nested property",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors its jQuery to DOM element",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors invoke jQuery method",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors invoke a method with several arguments",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors invoke asynchronous method",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors spread an array",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors spread DOM elements",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors spread network intercepts",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors then pass the current subject to the callback",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors then waits for the promise to resolve",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors then async callback",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors then return new subject",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors then keep the current subject",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors then commands inside the callback",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors then promises are eager",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Connectors then start with a promise",
"filename": "docs/commands/connectors.md",
"created": "2020-04-13T15:07:03.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/connectors.html"
},
{
"title": "Cookies cy.getCookie() - get a browser cookie",
"filename": "docs/commands/cookies.md",
"created": "2020-04-24T16:05:10.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/cookies.html"
},
{
"title": "Cookies cy.getCookies() - get browser cookies",
"filename": "docs/commands/cookies.md",
"created": "2020-04-24T16:05:10.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/cookies.html"
},
{
"title": "Cookies cy.setCookie() - set a browser cookie",
"filename": "docs/commands/cookies.md",
"created": "2020-04-24T16:05:10.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/cookies.html"
},
{
"title": "Cookies cy.clearCookie() - clear a browser cookie",
"filename": "docs/commands/cookies.md",
"created": "2020-04-24T16:05:10.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/cookies.html"
},
{
"title": "Cookies cy.clearCookies() - clear browser cookies",
"filename": "docs/commands/cookies.md",
"created": "2020-04-24T16:05:10.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/cookies.html"
},
{
"title": "Files cy.fixture() - load a fixture",
"filename": "docs/commands/files.md",
"created": "2020-04-24T22:12:46.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/files.html"
},
{
"title": "Files cy.fixture() or require - load a fixture",
"filename": "docs/commands/files.md",
"created": "2020-04-24T22:12:46.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/files.html"
},
{
"title": "Files cy.readFile() - read file contents",
"filename": "docs/commands/files.md",
"created": "2020-04-24T22:12:46.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/files.html"
},
{
"title": "Files cy.writeFile() - write to a file",
"filename": "docs/commands/files.md",
"created": "2020-04-24T22:12:46.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/files.html"
},
{
"title": "Files cy.writeFile() - write combined JSON object",
"filename": "docs/commands/files.md",
"created": "2020-04-24T22:12:46.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/files.html"
},
{
"title": "Files cy.writeFile() - write combined JSON array",
"filename": "docs/commands/files.md",
"created": "2020-04-24T22:12:46.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/files.html"
},
{
"title": "Local Storage access the localStorage",
"filename": "docs/commands/local-storage.md",
"created": "2020-05-05T20:17:42.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/local-storage.html"
},
{
"title": "Local Storage cy.clearLocalStorage() - clear all data in local storage",
"filename": "docs/commands/local-storage.md",
"created": "2020-05-05T20:17:42.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/local-storage.html"
},
{
"title": "Location cy.hash() - get the current URL hash",
"filename": "docs/commands/location.md",
"created": "2020-04-30T18:13:16.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/location.html"
},
{
"title": "Location cy.location() get the current location object",
"filename": "docs/commands/location.md",
"created": "2020-04-30T18:13:16.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/location.html"
},
{
"title": "Location cy.location() get part of the URL",
"filename": "docs/commands/location.md",
"created": "2020-04-30T18:13:16.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/location.html"
},
{
"title": "Location cy.location() parsed search",
"filename": "docs/commands/location.md",
"created": "2020-04-30T18:13:16.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/location.html"
},
{
"title": "Location cy.location() parsed search via fluent chain",
"filename": "docs/commands/location.md",
"created": "2020-04-30T18:13:16.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/location.html"
},
{
"title": "Location cy.location() parsed search using cypress-map queries",
"filename": "docs/commands/location.md",
"created": "2020-04-30T18:13:16.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/location.html"
},
{
"title": "Location cy.location() chained commands",
"filename": "docs/commands/location.md",
"created": "2020-04-30T18:13:16.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/location.html"
},
{
"title": "Location cy.location() match regular expression",
"filename": "docs/commands/location.md",
"created": "2020-04-30T18:13:16.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/location.html"
},
{
"title": "Location cy.url() - get the current URL string",
"filename": "docs/commands/location.md",
"created": "2020-04-30T18:13:16.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/location.html"
},
{
"title": "Misc .log() prints a string",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc .log() prints the number of elements",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc .log() does not yield the original argument",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc .log() binds the primitive value",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc .log() prints an object",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc .end() - end the command chain",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc cy.exec() - execute a system command",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc cy.focused() - get the DOM element that has focus",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc Cypress.Screenshot cy.screenshot() - take a screenshot",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc Cypress.Screenshot Cypress.Screenshot.defaults() - change default config of screenshots",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc cy.wrap() wrap an object",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc cy.wrap() invoke a method",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc cy.wrap() DOM object",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc cy.wrap() waits on a promise automatically",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc cy.wrap() using Cypress.Promise",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Misc cy.wrap() promises are eager",
"filename": "docs/commands/misc.md",
"created": "2020-04-24T14:44:24.000Z",
"url": "https://glebbahmutov.com/cypress-examples/commands/misc.html"
},
{
"title": "Navigation cy.go",
"filename": "docs/commands/navigation.md",