-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_.js
1661 lines (1379 loc) · 51.2 KB
/
example_.js
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
//
// **** Kitchen Sink Tests ****
//
// This app was developed to demonstrate
// how to write tests in Cypress utilizing
// all of the available commands
//
// Feel free to modify this spec in your
// own application as a jumping off point
// Please read our "Introduction to Cypress"
// https://on.cypress.io/introduction-to-cypress
describe('Kitchen Sink', function() {
it('.should() - assert that <title> is correct', function() {
// https://on.cypress.io/visit
cy.visit('https://example.cypress.io');
// Here we've made our first assertion using a '.should()' command.
// An assertion is comprised of a chainer, subject, and optional value.
// https://on.cypress.io/should
// https://on.cypress.io/and
// https://on.cypress.io/title
cy.title().should('include', 'Kitchen Sink');
// ↲ ↲ ↲
// subject chainer value
});
context('Querying', function() {
beforeEach(function() {
// Visiting our app before each test removes any state build up from
// previous tests. Visiting acts as if we closed a tab and opened a fresh one
cy.visit('https://example.cypress.io/commands/querying');
});
// Let's query for some DOM elements and make assertions
// The most commonly used query is 'cy.get()', you can
// think of this like the '$' in jQuery
it('cy.get() - query DOM elements', function() {
// https://on.cypress.io/get
// Get DOM elements by id
cy.get('#query-btn').should('contain', 'Button');
// Get DOM elements by class
cy.get('.query-btn').should('contain', 'Button');
cy.get('#querying .well>button:first').should('contain', 'Button');
// ↲
// Use CSS selectors just like jQuery
});
it('cy.contains() - query DOM elements with matching content', function() {
// https://on.cypress.io/contains
cy
.get('.query-list')
.contains('bananas')
.should('have.class', 'third');
// we can pass a regexp to `.contains()`
cy
.get('.query-list')
.contains(/^b\w+/)
.should('have.class', 'third');
cy
.get('.query-list')
.contains('apples')
.should('have.class', 'first');
// passing a selector to contains will yield the selector containing the text
cy
.get('#querying')
.contains('ul', 'oranges')
.should('have.class', 'query-list');
// `.contains()` will favor input[type='submit'],
// button, a, and label over deeper elements inside them
// this will not yield the <span> inside the button,
// but the <button> itself
cy
.get('.query-button')
.contains('Save Form')
.should('have.class', 'btn');
});
it('.within() - query DOM elements within a specific element', function() {
// https://on.cypress.io/within
cy.get('.query-form').within(function() {
cy.get('input:first').should('have.attr', 'placeholder', 'Email');
cy.get('input:last').should('have.attr', 'placeholder', 'Password');
});
});
it('cy.root() - query the root DOM element', function() {
// https://on.cypress.io/root
// By default, root is the document
cy.root().should('match', 'html');
cy.get('.query-ul').within(function() {
// In this within, the root is now the ul DOM element
cy.root().should('have.class', 'query-ul');
});
});
});
context('Traversal', function() {
beforeEach(function() {
cy.visit('https://example.cypress.io/commands/traversal');
});
// Let's query for some DOM elements and make assertions
it('.children() - get child DOM elements', function() {
// https://on.cypress.io/children
cy
.get('.traversal-breadcrumb')
.children('.active')
.should('contain', 'Data');
});
it('.closest() - get closest ancestor DOM element', function() {
// https://on.cypress.io/closest
cy
.get('.traversal-badge')
.closest('ul')
.should('have.class', 'list-group');
});
it('.eq() - get a DOM element at a specific index', function() {
// https://on.cypress.io/eq
cy
.get('.traversal-list>li')
.eq(1)
.should('contain', 'siamese');
});
it('.filter() - get DOM elements that match the selector', function() {
// https://on.cypress.io/filter
cy
.get('.traversal-nav>li')
.filter('.active')
.should('contain', 'About');
});
it('.find() - get descendant DOM elements of the selector', function() {
// https://on.cypress.io/find
cy
.get('.traversal-pagination')
.find('li')
.find('a')
.should('have.length', 7);
});
it('.first() - get first DOM element', function() {
// https://on.cypress.io/first
cy
.get('.traversal-table td')
.first()
.should('contain', '1');
});
it('.last() - get last DOM element', function() {
// https://on.cypress.io/last
cy
.get('.traversal-buttons .btn')
.last()
.should('contain', 'Submit');
});
it('.next() - get next sibling DOM element', function() {
// https://on.cypress.io/next
cy
.get('.traversal-ul')
.contains('apples')
.next()
.should('contain', 'oranges');
});
it('.nextAll() - get all next sibling DOM elements', function() {
// https://on.cypress.io/nextall
cy
.get('.traversal-next-all')
.contains('oranges')
.nextAll()
.should('have.length', 3);
});
it('.nextUntil() - get next sibling DOM elements until next el', function() {
// https://on.cypress.io/nextuntil
cy
.get('#veggies')
.nextUntil('#nuts')
.should('have.length', 3);
});
it('.not() - remove DOM elements from set of DOM elements', function() {
// https://on.cypress.io/not
cy
.get('.traversal-disabled .btn')
.not('[disabled]')
.should('not.contain', 'Disabled');
});
it('.parent() - get parent DOM element from DOM elements', function() {
// https://on.cypress.io/parent
cy
.get('.traversal-mark')
.parent()
.should('contain', 'Morbi leo risus');
});
it('.parents() - get parent DOM elements from DOM elements', function() {
// https://on.cypress.io/parents
cy
.get('.traversal-cite')
.parents()
.should('match', 'blockquote');
});
it('.parentsUntil() - get parent DOM elements from DOM elements until el', function() {
// https://on.cypress.io/parentsuntil
cy
.get('.clothes-nav')
.find('.active')
.parentsUntil('.clothes-nav')
.should('have.length', 2);
});
it('.prev() - get previous sibling DOM element', function() {
// https://on.cypress.io/prev
cy
.get('.birds')
.find('.active')
.prev()
.should('contain', 'Lorikeets');
});
it('.prevAll() - get all previous sibling DOM elements', function() {
// https://on.cypress.io/prevAll
cy
.get('.fruits-list')
.find('.third')
.prevAll()
.should('have.length', 2);
});
it('.prevUntil() - get all previous sibling DOM elements until el', function() {
// https://on.cypress.io/prevUntil
cy
.get('.foods-list')
.find('#nuts')
.prevUntil('#veggies');
});
it('.siblings() - get all sibling DOM elements', function() {
// https://on.cypress.io/siblings
cy
.get('.traversal-pills .active')
.siblings()
.should('have.length', 2);
});
});
context('Actions', function() {
beforeEach(function() {
cy.visit('https://example.cypress.io/commands/actions');
});
// Let's perform some actions on DOM elements
// https://on.cypress.io/interacting-with-elements
it('.type() - type into a DOM element', function() {
// https://on.cypress.io/type
cy
.get('.action-email')
.type('fake@email.com')
.should('have.value', 'fake@email.com')
// .type() with special character sequences
.type('{leftarrow}{rightarrow}{uparrow}{downarrow}')
.type('{del}{selectall}{backspace}')
// .type() with key modifiers
.type('{alt}{option}') //these are equivalent
.type('{ctrl}{control}') //these are equivalent
.type('{meta}{command}{cmd}') //these are equivalent
.type('{shift}')
// Delay each keypress by 0.1 sec
.type('slow.typing@email.com', { delay: 100 })
.should('have.value', 'slow.typing@email.com');
cy
.get('.action-disabled')
// Ignore error checking prior to type
// like whether the input is visible or disabled
.type('disabled error checking', { force: true })
.should('have.value', 'disabled error checking');
});
it('.focus() - focus on a DOM element', function() {
// https://on.cypress.io/focus
cy
.get('.action-focus')
.focus()
.should('have.class', 'focus')
.prev()
.should('have.attr', 'style', 'color: orange;');
});
it('.blur() - blur off a DOM element', function() {
// https://on.cypress.io/blur
cy
.get('.action-blur')
.type("I'm about to blur")
.blur()
.should('have.class', 'error')
.prev()
.should('have.attr', 'style', 'color: red;');
});
it('.clear() - clears an input or textarea element', function() {
// https://on.cypress.io/clear
cy
.get('.action-clear')
.type('We are going to clear this text')
.should('have.value', 'We are going to clear this text')
.clear()
.should('have.value', '');
});
it('.submit() - submit a form', function() {
// https://on.cypress.io/submit
cy
.get('.action-form')
.find('[type="text"]')
.type('HALFOFF');
cy
.get('.action-form')
.submit()
.next()
.should('contain', 'Your form has been submitted!');
});
it('.click() - click on a DOM element', function() {
// https://on.cypress.io/click
cy.get('.action-btn').click();
// You can clock on 9 specific positions of an element:
// -----------------------------------
// | topLeft top topRight |
// | |
// | |
// | |
// | left center right |
// | |
// | |
// | |
// | bottomLeft bottom bottomRight |
// -----------------------------------
// clicking in the center of the element is the default
cy.get('#action-canvas').click();
cy.get('#action-canvas').click('topLeft');
cy.get('#action-canvas').click('top');
cy.get('#action-canvas').click('topRight');
cy.get('#action-canvas').click('left');
cy.get('#action-canvas').click('right');
cy.get('#action-canvas').click('bottomLeft');
cy.get('#action-canvas').click('bottom');
cy.get('#action-canvas').click('bottomRight');
// .click() accepts an x and y coordinate
// that controls where the click occurs :)
cy
.get('#action-canvas')
.click(80, 75) // click 80px on x coord and 75px on y coord
.click(170, 75)
.click(80, 165)
.click(100, 185)
.click(125, 190)
.click(150, 185)
.click(170, 165);
// click multiple elements by passing multiple: true
cy.get('.action-labels>.label').click({ multiple: true });
// Ignore error checking prior to clicking
// like whether the element is visible, clickable or disabled
// this button below is covered by another element.
cy.get('.action-opacity>.btn').click({ force: true });
});
it('.dblclick() - double click on a DOM element', function() {
// Our app has a listener on 'dblclick' event in our 'scripts.js'
// that hides the div and shows an input on double click
// https://on.cypress.io/dblclick
cy
.get('.action-div')
.dblclick()
.should('not.be.visible');
cy.get('.action-input-hidden').should('be.visible');
});
it('cy.check() - check a checkbox or radio element', function() {
// By default, .check() will check all
// matching checkbox or radio elements in succession, one after another
// https://on.cypress.io/check
cy
.get('.action-checkboxes [type="checkbox"]')
.not('[disabled]')
.check()
.should('be.checked');
cy
.get('.action-radios [type="radio"]')
.not('[disabled]')
.check()
.should('be.checked');
// .check() accepts a value argument
// that checks only checkboxes or radios
// with matching values
cy
.get('.action-radios [type="radio"]')
.check('radio1')
.should('be.checked');
// .check() accepts an array of values
// that checks only checkboxes or radios
// with matching values
cy
.get('.action-multiple-checkboxes [type="checkbox"]')
.check(['checkbox1', 'checkbox2'])
.should('be.checked');
// Ignore error checking prior to checking
// like whether the element is visible, clickable or disabled
// this checkbox below is disabled.
cy
.get('.action-checkboxes [disabled]')
.check({ force: true })
.should('be.checked');
cy
.get('.action-radios [type="radio"]')
.check('radio3', { force: true })
.should('be.checked');
});
it('.uncheck() - uncheck a checkbox element', function() {
// By default, .uncheck() will uncheck all matching
// checkbox elements in succession, one after another
// https://on.cypress.io/uncheck
cy
.get('.action-check [type="checkbox"]')
.not('[disabled]')
.uncheck()
.should('not.be.checked');
// .uncheck() accepts a value argument
// that unchecks only checkboxes
// with matching values
cy
.get('.action-check [type="checkbox"]')
.check('checkbox1')
.uncheck('checkbox1')
.should('not.be.checked');
// .uncheck() accepts an array of values
// that unchecks only checkboxes or radios
// with matching values
cy
.get('.action-check [type="checkbox"]')
.check(['checkbox1', 'checkbox3'])
.uncheck(['checkbox1', 'checkbox3'])
.should('not.be.checked');
// Ignore error checking prior to unchecking
// like whether the element is visible, clickable or disabled
// this checkbox below is disabled.
cy
.get('.action-check [disabled]')
.uncheck({ force: true })
.should('not.be.checked');
});
it('.select() - select an option in a <select> element', function() {
// https://on.cypress.io/select
// Select option with matching text content
cy.get('.action-select').select('apples');
// Select option with matching value
cy.get('.action-select').select('fr-bananas');
// Select options with matching text content
cy.get('.action-select-multiple').select(['apples', 'oranges', 'bananas']);
// Select options with matching values
cy.get('.action-select-multiple').select(['fr-apples', 'fr-oranges', 'fr-bananas']);
});
it('.scrollIntoView() - scroll an element into view', function() {
// https://on.cypress.io/scrollintoview
// normally all of these buttons are hidden, because they're not within
// the viewable area of their parent (we need to scroll to see them)
cy.get('#scroll-horizontal button').should('not.be.visible');
// scroll the button into view, as if the user had scrolled
cy
.get('#scroll-horizontal button')
.scrollIntoView()
.should('be.visible');
cy.get('#scroll-vertical button').should('not.be.visible');
// Cypress handles the scroll direction needed
cy
.get('#scroll-vertical button')
.scrollIntoView()
.should('be.visible');
cy.get('#scroll-both button').should('not.be.visible');
// Cypress knows to scroll to the right and down
cy
.get('#scroll-both button')
.scrollIntoView()
.should('be.visible');
});
it('cy.scrollTo() - scroll the window or element to a position', function() {
// https://on.cypress.io/scrollTo
// You can scroll to 9 specific positions of an element:
// -----------------------------------
// | topLeft top topRight |
// | |
// | |
// | |
// | left center right |
// | |
// | |
// | |
// | bottomLeft bottom bottomRight |
// -----------------------------------
// if you chain .scrollTo() off of cy, we will
// scroll the entire window
cy.scrollTo('bottom');
cy.get('#scrollable-horizontal').scrollTo('right');
// or you can scroll to a specific coordinate:
// (x axis, y axis) in pixels
cy.get('#scrollable-vertical').scrollTo(250, 250);
// or you can scroll to a specific percentage
// of the (width, height) of the element
cy.get('#scrollable-both').scrollTo('75%', '25%');
// control the easing of the scroll (default is 'swing')
cy.get('#scrollable-vertical').scrollTo('center', { easing: 'linear' });
// control the duration of the scroll (in ms)
cy.get('#scrollable-both').scrollTo('center', { duration: 2000 });
});
it('.trigger() - trigger an event on a DOM element', function() {
// To interact with a range input (slider), we need to set its value and
// then trigger the appropriate event to signal it has changed
// Here, we invoke jQuery's val() method to set the value
// and trigger the 'change' event
// Note that some implementations may rely on the 'input' event,
// which is fired as a user moves the slider, but is not supported
// by some browsers
// https://on.cypress.io/trigger
cy
.get('.trigger-input-range')
.invoke('val', 25)
.trigger('change')
.get('input[type=range]')
.siblings('p')
.should('have.text', '25');
// See our example recipes for more examples of using trigger
// https://on.cypress.io/examples
});
});
context('Window', function() {
beforeEach(function() {
cy.visit('https://example.cypress.io/commands/window');
});
it('cy.window() - get the global window object', function() {
// https://on.cypress.io/window
cy.window().should('have.property', 'top');
});
it('cy.document() - get the document object', function() {
// https://on.cypress.io/document
cy
.document()
.should('have.property', 'charset')
.and('eq', 'UTF-8');
});
it('cy.title() - get the title', function() {
// https://on.cypress.io/title
cy.title().should('include', 'Kitchen Sink');
});
});
context('Viewport', function() {
beforeEach(function() {
cy.visit('https://example.cypress.io/commands/viewport');
});
it('cy.viewport() - set the viewport size and dimension', function() {
cy.get('#navbar').should('be.visible');
// https://on.cypress.io/viewport
cy.viewport(320, 480);
// the navbar should have collapse since our screen is smaller
cy.get('#navbar').should('not.be.visible');
cy
.get('.navbar-toggle')
.should('be.visible')
.click();
cy
.get('.nav')
.find('a')
.should('be.visible');
// lets see what our app looks like on a super large screen
cy.viewport(2999, 2999);
// cy.viewport() accepts a set of preset sizes
// to easily set the screen to a device's width and height
// We added a cy.wait() between each viewport change so you can see
// the change otherwise it's a little too fast to see :)
cy.viewport('macbook-15');
cy.wait(200);
cy.viewport('macbook-13');
cy.wait(200);
cy.viewport('macbook-11');
cy.wait(200);
cy.viewport('ipad-2');
cy.wait(200);
cy.viewport('ipad-mini');
cy.wait(200);
cy.viewport('iphone-6+');
cy.wait(200);
cy.viewport('iphone-6');
cy.wait(200);
cy.viewport('iphone-5');
cy.wait(200);
cy.viewport('iphone-4');
cy.wait(200);
cy.viewport('iphone-3');
cy.wait(200);
// cy.viewport() accepts an orientation for all presets
// the default orientation is 'portrait'
cy.viewport('ipad-2', 'portrait');
cy.wait(200);
cy.viewport('iphone-4', 'landscape');
cy.wait(200);
// The viewport will be reset back to the default dimensions
// in between tests (the default is set in cypress.json)
});
});
context('Location', function() {
beforeEach(function() {
cy.visit('https://example.cypress.io/commands/location');
});
// We look at the url to make assertions
// about the page's state
it('cy.hash() - get the current URL hash', function() {
// https://on.cypress.io/hash
cy.hash().should('be.empty');
});
it('cy.location() - get window.location', function() {
// https://on.cypress.io/location
cy.location().should(function(location) {
expect(location.hash).to.be.empty;
expect(location.href).to.eq('https://example.cypress.io/commands/location');
expect(location.host).to.eq('example.cypress.io');
expect(location.hostname).to.eq('example.cypress.io');
expect(location.origin).to.eq('https://example.cypress.io');
expect(location.pathname).to.eq('/commands/location');
expect(location.port).to.eq('');
expect(location.protocol).to.eq('https:');
expect(location.search).to.be.empty;
});
});
it('cy.url() - get the current URL', function() {
// https://on.cypress.io/url
cy.url().should('eq', 'https://example.cypress.io/commands/location');
});
});
context('Navigation', function() {
beforeEach(function() {
cy.visit('https://example.cypress.io');
cy
.get('.navbar-nav')
.contains('Commands')
.click();
cy
.get('.dropdown-menu')
.contains('Navigation')
.click();
});
it("cy.go() - go back or forward in the browser's history", function() {
cy.location('pathname').should('include', 'navigation');
// https://on.cypress.io/go
cy.go('back');
cy.location('pathname').should('not.include', 'navigation');
cy.go('forward');
cy.location('pathname').should('include', 'navigation');
// equivalent to clicking back
cy.go(-1);
cy.location('pathname').should('not.include', 'navigation');
// equivalent to clicking forward
cy.go(1);
cy.location('pathname').should('include', 'navigation');
});
it('cy.reload() - reload the page', function() {
// https://on.cypress.io/reload
cy.reload();
// reload the page without using the cache
cy.reload(true);
});
it('cy.visit() - visit a remote url', function() {
// Visit any sub-domain of your current domain
// https://on.cypress.io/visit
// Pass options to the visit
cy.visit('https://example.cypress.io/commands/navigation', {
timeout: 50000, // increase total time for the visit to resolve
onBeforeLoad: function(contentWindow) {
// contentWindow is the remote page's window object
},
onLoad: function(contentWindow) {
// contentWindow is the remote page's window object
},
});
});
});
context('Assertions', function() {
beforeEach(function() {
cy.visit('https://example.cypress.io/commands/assertions');
});
describe('Implicit Assertions', function() {
it('.should() - make an assertion about the current subject', function() {
// https://on.cypress.io/should
cy
.get('.assertion-table')
.find('tbody tr:last')
.should('have.class', 'success');
});
it('.and() - chain multiple assertions together', function() {
// https://on.cypress.io/and
cy
.get('.assertions-link')
.should('have.class', 'active')
.and('have.attr', 'href')
.and('include', 'cypress.io');
});
});
describe('Explicit Assertions', function() {
it('expect - make an assertion about a specified subject', function() {
// We can use Chai's BDD style assertions
expect(true).to.be.true;
// Pass a function to should that can have any number
// of explicit assertions within it.
cy
.get('.assertions-p')
.find('p')
.should(function($p) {
// return an array of texts from all of the p's
var texts = $p.map(function(i, el) {
// https://on.cypress.io/$
return Cypress.$(el).text();
});
// jquery map returns jquery object
// and .get() convert this to simple array
texts = texts.get();
// array should have length of 3
expect(texts).to.have.length(3);
// set this specific subject
expect(texts).to.deep.eq([
'Some text from first p',
'More text from second p',
'And even more text from third p',
]);
});
});
});
});
context('Misc', function() {
beforeEach(function() {
cy.visit('https://example.cypress.io/commands/misc');
});
it('.end() - end the command chain', function() {
// cy.end is useful when you want to end a chain of commands
// and force Cypress to re-query from the root element
// https://on.cypress.io/end
cy.get('.misc-table').within(function() {
// ends the current chain and yields null
cy
.contains('Cheryl')
.click()
.end();
// queries the entire table again
cy.contains('Charles').click();
});
});
it('cy.exec() - execute a system command', function() {
// cy.exec allows you to execute a system command.
// so you can take actions necessary for your test,
// but outside the scope of Cypress.
// https://on.cypress.io/exec
cy
.exec('echo Jane Lane')
.its('stdout')
.should('contain', 'Jane Lane');
cy
.exec('cat cypress.json')
.its('stderr')
.should('be.empty');
cy
.exec('pwd')
.its('code')
.should('eq', 0);
});
it('cy.focused() - get the DOM element that has focus', function() {
// https://on.cypress.io/focused
cy
.get('.misc-form')
.find('#name')
.click();
cy.focused().should('have.id', 'name');
cy
.get('.misc-form')
.find('#description')
.click();
cy.focused().should('have.id', 'description');
});
it('cy.screenshot() - take a screenshot', function() {
// https://on.cypress.io/screenshot
cy.screenshot('my-image');
});
it('cy.wrap() - wrap an object', function() {
// https://on.cypress.io/wrap
cy
.wrap({ foo: 'bar' })
.should('have.property', 'foo')
.and('include', 'bar');
});
});
context('Connectors', function() {
beforeEach(function() {
cy.visit('https://example.cypress.io/commands/connectors');
});
it('.each() - iterate over an array of elements', function() {
// https://on.cypress.io/each
cy.get('.connectors-each-ul>li').each(function($el, index, $list) {
console.log($el, index, $list);
});
});
it('.its() - get properties on the current subject', function() {
// https://on.cypress.io/its
cy
.get('.connectors-its-ul>li')
// calls the 'length' property yielding that value
.its('length')
.should('be.gt', 2);
});
it('.invoke() - invoke a function on the current subject', function() {
// our div is hidden in our script.js
// $('.connectors-div').hide()
// https://on.cypress.io/invoke
cy
.get('.connectors-div')
.should('be.hidden')
// call the jquery method 'show' on the 'div.container'
.invoke('show')
.should('be.visible');
});
it('.spread() - spread an array as individual args to callback function', function() {
// https://on.cypress.io/spread
var arr = ['foo', 'bar', 'baz'];
cy.wrap(arr).spread(function(foo, bar, baz) {
expect(foo).to.eq('foo');
expect(bar).to.eq('bar');
expect(baz).to.eq('baz');
});
});
it('.then() - invoke a callback function with the current subject', function() {
// https://on.cypress.io/then
cy.get('.connectors-list>li').then(function($lis) {
expect($lis).to.have.length(3);
expect($lis.eq(0)).to.contain('Walk the dog');
expect($lis.eq(1)).to.contain('Feed the cat');
expect($lis.eq(2)).to.contain('Write JavaScript');
});
});
});
context('Aliasing', function() {
beforeEach(function() {
cy.visit('https://example.cypress.io/commands/aliasing');
});
// We alias a DOM element for use later
// We don't have to traverse to the element
// later in our code, we just reference it with @
it('.as() - alias a route or DOM element for later use', function() {
// this is a good use case for an alias,
// we don't want to write this long traversal again
// https://on.cypress.io/as
cy
.get('.as-table')
.find('tbody>tr')
.first()
.find('td')
.first()
.find('button')
.as('firstBtn');
// maybe do some more testing here...
// when we reference the alias, we place an
// @ in front of it's name
cy.get('@firstBtn').click();
cy
.get('@firstBtn')
.should('have.class', 'btn-success')