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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
<?php
/**
* Author: davert
* Date: 13.01.12
*
* Class TestsForMink
* Description:
*
*/
abstract class TestsForWeb extends \Codeception\Test\Unit
{
/**
* @var \Codeception\Module\PhpBrowser
*/
protected $module;
public function testAmOnPage()
{
$this->module->amOnPage('/');
$this->module->see('Welcome to test app!');
$this->module->amOnPage('/info');
$this->module->see('Information');
}
public function testCurrentUrl()
{
$this->module->amOnPage('/info');
$this->module->seeCurrentUrlEquals('/info');
$this->module->dontSeeInCurrentUrl('/user');
$this->module->dontSeeCurrentUrlMatches('~user~');
$this->module->amOnPage('/form/checkbox');
$this->module->seeCurrentUrlEquals('/form/checkbox');
$this->module->seeInCurrentUrl('form');
$this->module->seeCurrentUrlMatches('~form/.*~');
$this->module->dontSeeCurrentUrlEquals('/');
$this->module->dontSeeCurrentUrlMatches('~form/a~');
$this->module->dontSeeInCurrentUrl('user');
}
public function testSee()
{
$this->module->amOnPage('/');
$this->module->see('Welcome to test app!');
$this->module->see('A wise man said: "debug!"');
$this->module->see('Welcome to test app!', 'h1');
$this->module->see('Some text with formatting on separate lines');
$this->module->see('Some text with formatting on separate lines', '#area4');
$this->module->see('on separate lines', '#area4 .someclass');
//ensure backwards compatibility, this assertion passed before this change
$this->module->see("Test Link \n\n\n Test");
//Single quote HTML entities must be decoded
$this->module->see("please don't provide us any personal information.");
$this->module->amOnPage('/info');
$this->module->see('valuable', 'p');
$this->module->see('valuable', 'descendant-or-self::body/p');
$this->module->dontSee('Welcome');
$this->module->dontSee('valuable', 'h1');
$this->module->dontSee('Welcome', 'h6');
}
public function testDontSeeFailsWhenMultilineTextMatches()
{
$this->shouldFail();
$this->module->amOnPage('/');
$this->module->dontSee('Some text with formatting on separate lines');
}
public function testDontSeeFailsWhenMultilineTextMatchesInSelector()
{
$this->shouldFail();
$this->module->amOnPage('/');
$this->module->dontSee('Some text with formatting on separate lines', '#area4');
}
/**
* @Issue https://github.com/Codeception/Codeception/issues/3114
*/
public function testSeeIsCaseInsensitiveForUnicodeText()
{
$this->module->amOnPage('/info');
$this->module->see('ссылочка');
$this->module->see('ссылочка', 'a');
}
public function testDontSeeIsCaseInsensitiveForUnicodeText()
{
$this->setExpectedException("PHPUnit\Framework\AssertionFailedError");
$this->module->amOnPage('/info');
$this->module->dontSee('ссылочка');
}
public function testSeeInSource()
{
$this->module->amOnPage('/');
$this->module->seeInSource('<h1>Welcome to test app!</h1>');
$this->module->seeInSource('A wise man said: "debug!"');
$this->module->dontSeeInSource('John Cleese');
}
public function testSeeInCurrentUrl()
{
$this->module->amOnPage('/info');
$this->module->seeInCurrentUrl('/info');
}
public function testSeeLink()
{
$this->module->amOnPage('/external_url');
$this->module->seeLink('Next');
$this->module->seeLink('Next', 'http://codeception.com/');
}
public function testDontSeeLink()
{
$this->module->amOnPage('/external_url');
$this->module->dontSeeLink('Back');
$this->module->dontSeeLink('Next', '/fsdfsdf/');
}
public function testSeeLinkFailsIfTextDoesNotMatch()
{
$this->setExpectedException(
'PHPUnit\Framework\AssertionFailedError',
"No links containing text 'Codeception' were found in page /external_url"
);
$this->module->amOnPage('/external_url');
$this->module->seeLink('Codeception');
}
public function testSeeLinkFailsIfHrefDoesNotMatch()
{
$this->setExpectedException(
'PHPUnit\Framework\AssertionFailedError',
"No links containing text 'Next' and URL '/fsdfsdf/' were found in page /external_url"
);
$this->module->amOnPage('/external_url');
$this->module->seeLink('Next', '/fsdfsdf/');
}
public function testDontSeeLinkFailsIfTextMatches()
{
$this->setExpectedException(
'PHPUnit\Framework\AssertionFailedError',
"Link containing text 'Next' was found in page /external_url"
);
$this->module->amOnPage('/external_url');
$this->module->dontSeeLink('Next');
}
public function testDontSeeLinkFailsIfTextAndUrlMatches()
{
$this->setExpectedException(
'PHPUnit\Framework\AssertionFailedError',
"Link containing text 'Next' and URL 'http://codeception.com/' was found in page /external_url"
);
$this->module->amOnPage('/external_url');
$this->module->dontSeeLink('Next', 'http://codeception.com/');
}
public function testSeeLinkMatchesRelativeLink()
{
$this->module->amOnPage('/info');
$this->module->seeLink('Sign in!', '/login');
}
public function testDontSeeLinkMatchesRelativeLink()
{
$this->setExpectedException(
'PHPUnit\Framework\AssertionFailedError',
"Link containing text 'Sign in!' and URL '/login' was found in page /info"
);
$this->module->amOnPage('/info');
$this->module->dontSeeLink('Sign in!', '/login');
}
public function testClick()
{
$this->module->amOnPage('/');
$this->module->click('More info');
$this->module->seeInCurrentUrl('/info');
$this->module->amOnPage('/');
$this->module->click('#link');
$this->module->seeInCurrentUrl('/info');
$this->module->amOnPage('/');
$this->module->click("descendant-or-self::a[@id = 'link']");
$this->module->seeInCurrentUrl('/info');
}
public function testClickByName()
{
$this->module->amOnPage('/form/button');
$this->module->click("btn0");
$form = data::get('form');
$this->assertEquals('val', $form['text']);
}
public function testClickByLinkTitle()
{
$this->module->amOnPage('/');
$this->module->click("Link Title");
$this->module->seeInCurrentUrl('/info');
}
public function testClickOnContext()
{
$this->module->amOnPage('/');
$this->module->click('More info', 'p');
$this->module->seeInCurrentUrl('/info');
$this->module->amOnPage('/');
$this->module->click('More info', 'body>p');
$this->module->seeInCurrentUrl('/info');
}
public function testCheckboxByCss()
{
$this->module->amOnPage('/form/checkbox');
$this->module->checkOption('#checkin');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('agree', $form['terms']);
}
public function testCheckboxByName()
{
$this->module->amOnPage('/form/checkbox');
$this->module->checkOption('terms');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('agree', $form['terms']);
}
public function testCheckboxByLabel()
{
$this->module->amOnPage('/form/checkbox');
$this->module->checkOption('I Agree');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('agree', $form['terms']);
}
/**
* @group testCheckboxArray
* @Issue https://github.com/Codeception/Codeception/pull/1145
*/
public function testCheckboxArray()
{
$this->module->amOnPage('/form/checkbox_array');
$this->module->checkOption('#id2');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('second', reset($form['field']));
}
public function testSelectByCss()
{
$this->module->amOnPage('/form/select');
$this->module->selectOption('form select[name=age]', 'adult');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('adult', $form['age']);
}
public function testSelectByName()
{
$this->module->amOnPage('/form/select');
$this->module->selectOption('age', 'adult');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('adult', $form['age']);
}
public function testSelectByLabel()
{
$this->module->amOnPage('/form/select');
$this->module->selectOption('Select your age', 'dead');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('dead', $form['age']);
}
public function testSelectByLabelAndOptionText()
{
$this->module->amOnPage('/form/select');
$this->module->selectOption('Select your age', '21-60');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('adult', $form['age']);
}
public function testSeeSelectedOption()
{
$this->module->amOnPage('/form/select');
$this->module->seeOptionIsSelected('#age', '60-100');
$this->module->dontSeeOptionIsSelected('#age', '100-210');
}
public function testSeeSelectedOptionForRadioButton()
{
$this->module->amOnPage('/form/example6');
$this->module->seeOptionIsSelected('input[name=frequency]', 'hour');
$this->module->dontSeeOptionIsSelected('input[name=frequency]', 'week');
}
/**
* @Issue https://github.com/Codeception/Codeception/issues/2733
*/
public function testSeeSelectedOptionReturnsFirstOptionIfNotSelected()
{
$this->module->amOnPage('/form/complex');
$this->module->seeOptionIsSelected('#age', 'below 13');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('child', $form['age'], 'first option was not submitted');
}
/**
* @group testSubmitSeveralSubmitsForm
* @Issue https://github.com/Codeception/Codeception/issues/1183
*/
public function testSubmitSeveralSubmitsForm()
{
$this->module->amOnPage('/form/example8');
$this->module->click('form button[value="second"]');
$form = data::get('form');
$this->assertEquals('second', $form['submit']);
}
/**
* Additional test to make sure no off-by-one related problem.
*
* @group testSubmitSeveralSubmitsForm
* @Issue https://github.com/Codeception/Codeception/issues/1183
*/
public function testSubmitLotsOfSubmitsForm()
{
$this->module->amOnPage('/form/example11');
$this->module->click('form button[value="fifth"]');
$form = data::get('form');
$this->assertEquals('fifth', $form['submit']);
}
public function testSelectMultipleOptionsByText()
{
$this->module->amOnPage('/form/select_multiple');
$this->module->selectOption('What do you like the most?', array('Play Video Games', 'Have Sex'));
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals(array('play', 'adult'), $form['like']);
}
public function testSelectMultipleOptionsByValue()
{
$this->module->amOnPage('/form/select_multiple');
$this->module->selectOption('What do you like the most?', array('eat', 'adult'));
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals(array('eat', 'adult'), $form['like']);
}
public function testHidden()
{
$this->module->amOnPage('/form/hidden');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('kill_people', $form['action']);
}
public function testTextareaByCss()
{
$this->module->amOnPage('/form/textarea');
$this->module->fillField('textarea', 'Nothing special');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('Nothing special', $form['description']);
}
public function testTextareaByLabel()
{
$this->module->amOnPage('/form/textarea');
$this->module->fillField('Description', 'Nothing special');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('Nothing special', $form['description']);
}
public function testTextFieldByCss()
{
$this->module->amOnPage('/form/field');
$this->module->fillField('#name', 'Nothing special');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('Nothing special', $form['name']);
}
public function testTextFieldByName()
{
$this->module->amOnPage('/form/example1');
$this->module->fillField('LoginForm[username]', 'davert');
$this->module->fillField('LoginForm[password]', '123456');
$this->module->click('Login');
$login = data::get('form');
$this->assertEquals('davert', $login['LoginForm']['username']);
$this->assertEquals('123456', $login['LoginForm']['password']);
}
public function testTextFieldByLabel()
{
$this->module->amOnPage('/form/field');
$this->module->fillField('Name', 'Nothing special');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('Nothing special', $form['name']);
}
public function testTextFieldByLabelWithoutFor()
{
$this->module->amOnPage('/form/field');
$this->module->fillField('Other label', 'Nothing special');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('Nothing special', $form['othername']);
}
public function testFileFieldByCss()
{
$this->module->amOnPage('/form/file');
$this->module->attachFile('#avatar', 'app/avatar.jpg');
$this->module->click('Submit');
$this->assertNotEmpty(data::get('files'));
$files = data::get('files');
$this->assertArrayHasKey('avatar', $files);
}
public function testFileFieldByLabel()
{
$this->module->amOnPage('/form/file');
$this->module->attachFile('Avatar', 'app/avatar.jpg');
$this->module->click('Submit');
$this->assertNotEmpty(data::get('files'));
}
public function testSeeCheckboxIsNotChecked()
{
$this->module->amOnPage('/form/checkbox');
$this->module->dontSeeCheckboxIsChecked('#checkin');
$this->module->dontSeeCheckboxIsChecked('I Agree');
}
public function testSeeCheckboxChecked()
{
$this->module->amOnPage('/info');
$this->module->seeCheckboxIsChecked('input[type=checkbox]');
$this->module->seeCheckboxIsChecked('Checked');
}
public function testSeeWithNonLatin()
{
$this->module->amOnPage('/info');
$this->module->see('на');
}
public function testSeeWithNonLatinAndSelectors()
{
$this->module->amOnPage('/info');
$this->module->see('Текст', 'p');
}
public function testSeeInFieldOnInput()
{
$this->module->amOnPage('/form/field');
$this->module->seeInField('Name', 'OLD_VALUE');
$this->module->seeInField('input[name=name]', 'OLD_VALUE');
$this->module->seeInField('descendant-or-self::input[@id="name"]', 'OLD_VALUE');
}
public function testSeeInFieldForEmptyInput()
{
$this->module->amOnPage('/form/empty');
$this->module->seeInField('#empty_input', '');
}
public function testSeeInFieldOnTextarea()
{
$this->module->amOnPage('/form/textarea');
$this->module->seeInField('Description', 'sunrise');
$this->module->seeInField('textarea', 'sunrise');
$this->module->seeInField('descendant-or-self::textarea[@id="description"]', 'sunrise');
}
public function testSeeInFieldForEmptyTextarea()
{
$this->module->amOnPage('/form/empty');
$this->module->seeInField('#empty_textarea', '');
}
public function testSeeInFieldOnCheckbox()
{
$this->module->amOnPage('/form/field_values');
$this->module->dontSeeInField('checkbox[]', 'not seen one');
$this->module->seeInField('checkbox[]', 'see test one');
$this->module->dontSeeInField('checkbox[]', 'not seen two');
$this->module->seeInField('checkbox[]', 'see test two');
$this->module->dontSeeInField('checkbox[]', 'not seen three');
$this->module->seeInField('checkbox[]', 'see test three');
}
public function testSeeInFieldWithBoolean()
{
$this->module->amOnPage('/form/field_values');
$this->module->seeInField('checkbox1', true);
$this->module->dontSeeInField('checkbox1', false);
$this->module->seeInField('checkbox2', false);
$this->module->dontSeeInField('checkbox2', true);
$this->module->seeInField('radio2', true);
$this->module->dontSeeInField('radio2', false);
$this->module->seeInField('radio3', false);
$this->module->dontSeeInField('radio3', true);
}
public function testSeeInFieldOnRadio()
{
$this->module->amOnPage('/form/field_values');
$this->module->seeInField('radio1', 'see test one');
$this->module->dontSeeInField('radio1', 'not seen one');
$this->module->dontSeeInField('radio1', 'not seen two');
$this->module->dontSeeInField('radio1', 'not seen three');
}
public function testSeeInFieldOnSelect()
{
$this->module->amOnPage('/form/field_values');
$this->module->seeInField('select1', 'see test one');
$this->module->seeInField('select1', 'Selected');
$this->module->dontSeeInField('select1', 'not seen one');
$this->module->dontSeeInField('select1', 'not seen two');
$this->module->dontSeeInField('select1', 'not seen three');
$this->module->dontSeeInField('select1', 'Not selected');
}
public function testSeeInFieldEmptyValueForUnselectedSelect()
{
$this->module->amOnPage('/form/field_values');
$this->module->seeInField('select3', '');
}
public function testSeeInFieldOnSelectMultiple()
{
$this->module->amOnPage('/form/field_values');
$this->module->dontSeeInField('select2', 'not seen one');
$this->module->seeInField('select2', 'see test one');
$this->module->dontSeeInField('select2', 'not seen two');
$this->module->seeInField('select2', 'see test two');
$this->module->dontSeeInField('select2', 'not seen three');
$this->module->seeInField('select2', 'see test three');
}
public function testSeeInFieldWithExactMatch()
{
$this->module->amOnPage('/form/field_values');
$this->module->seeInField(array('name' => 'select2'), 'see test one');
}
public function testDontSeeInFieldOnInput()
{
$this->module->amOnPage('/form/field');
$this->module->dontSeeInField('Name', 'Davert');
$this->module->dontSeeInField('input[name=name]', 'Davert');
$this->module->dontSeeInField('descendant-or-self::input[@id="name"]', 'Davert');
}
public function testDontSeeInFieldOnTextarea()
{
$this->module->amOnPage('/form/textarea');
$this->module->dontSeeInField('Description', 'sunset');
$this->module->dontSeeInField('textarea', 'sunset');
$this->module->dontSeeInField('descendant-or-self::textarea[@id="description"]', 'sunset');
}
public function testSeeInFormFields()
{
$this->module->amOnPage('/form/field_values');
$params = [
'checkbox[]' => [
'see test one',
'see test two',
],
'radio1' => 'see test one',
'checkbox1' => true,
'checkbox2' => false,
'select1' => 'see test one',
'select2' => [
'see test one',
'see test two',
'see test three'
]
];
$this->module->seeInFormFields('form', $params);
}
public function testSeeInFormFieldsFails()
{
$this->module->amOnPage('/form/field_values');
$this->setExpectedException("PHPUnit\Framework\AssertionFailedError");
$params = [
'radio1' => 'something I should not see',
'checkbox1' => true,
'checkbox2' => false,
'select1' => 'see test one',
'select2' => [
'see test one',
'see test two',
'see test three'
]
];
$this->module->seeInFormFields('form', $params);
}
public function testDontSeeInFormFields()
{
$this->module->amOnPage('/form/field_values');
$params = [
'checkbox[]' => [
'not seen one',
'not seen two',
],
'radio1' => 'not seen one',
'checkbox1' => false,
'checkbox2' => true,
'select1' => 'not seen one',
'select2' => [
'not seen one',
'No where to be seen'
]
];
$this->module->dontSeeInFormFields('form', $params);
}
public function testDontSeeInFormFieldsFails()
{
$this->module->amOnPage('/form/field_values');
$this->setExpectedException("PHPUnit\Framework\AssertionFailedError");
$params = [
'checkbox[]' => [
'wont see this anyway',
'see test one',
],
'select2' => [
'not seen one',
'No where to be seen'
]
];
$this->module->dontSeeInFormFields('form', $params);
}
public function testSeeInFormFieldsWithAssociativeArrays()
{
$this->module->amOnPage('/form/example17');
$this->module->seeInFormFields('form', [
'FooBar' => ['bar' => 'baz'],
'Food' => ['beer' => ['yum' => ['yeah' => 'mmhm']]],
]);
}
public function testSeeInFieldWithNonLatin()
{
$this->module->amOnPage('/info');
$this->module->seeInField('rus', 'Верно');
}
public function testApostrophesInText()
{
$this->module->amOnPage('/info');
$this->module->see("Don't do that at home!");
$this->module->see("Don't do that at home!", 'h3');
}
public function testSign()
{
$this->module->amOnPage('/info');
$this->module->seeLink('Sign in!');
$this->module->amOnPage('/info');
$this->module->click('Sign in!');
}
public function testGrabTextFrom()
{
$this->module->amOnPage('/');
$result = $this->module->grabTextFrom('h1');
$this->assertEquals("Welcome to test app!", $result);
$result = $this->module->grabTextFrom('descendant-or-self::h1');
$this->assertEquals("Welcome to test app!", $result);
$result = $this->module->grabTextFrom('~Welcome to (\w+) app!~');
$this->assertEquals('test', $result);
}
public function testGrabValueFrom()
{
$this->module->amOnPage('/form/hidden');
$result = $this->module->grabValueFrom('#action');
$this->assertEquals("kill_people", $result);
$result = $this->module->grabValueFrom("descendant-or-self::form/descendant::input[@name='action']");
$this->assertEquals("kill_people", $result);
$this->module->amOnPage('/form/textarea');
$result = $this->module->grabValueFrom('#description');
$this->assertEquals('sunrise', $result);
$this->module->amOnPage('/form/select');
$result = $this->module->grabValueFrom('#age');
$this->assertEquals('oldfag', $result);
}
/**
* @see https://github.com/Codeception/Codeception/issues/3866
*/
public function testGrabValueFromWithFillField()
{
$this->module->amOnPage('/form/bug3866');
$this->module->fillField('empty', 'new value');
$result = $this->module->grabValueFrom('#empty');
$this->assertEquals('new value', $result);
$this->module->fillField('empty_textarea', 'new value');
$result = $this->module->grabValueFrom('#empty_textarea');
$this->assertEquals('new value', $result);
$this->module->fillField('//textarea[@name="textarea[name][]"]', 'new value');
$result = $this->module->grabValueFrom('#textarea_with_square_bracket');
$this->assertEquals('new value', $result);
}
public function testGrabAttributeFrom()
{
$this->module->amOnPage('/search');
$this->assertEquals('get', $this->module->grabAttributeFrom('form', 'method'));
}
public function testLinksWithSimilarNames()
{
$this->module->amOnPage('/');
$this->module->click('Test Link');
$this->module->seeInCurrentUrl('/form/file');
$this->module->amOnPage('/');
$this->module->click('Test');
$this->module->seeInCurrentUrl('/form/hidden');
}
public function testLinksWithDifferentContext()
{
$this->module->amOnPage('/');
$this->module->click('Test', '#area1');
$this->module->seeInCurrentUrl('/form/file');
$this->module->amOnPage('/');
$this->module->click('Test', '#area2');
$this->module->seeInCurrentUrl('/form/hidden');
}
public function testSeeElementOnPage()
{
$this->module->amOnPage('/form/field');
$this->module->seeElement('input[name=name]');
$this->module->seeElement('input', ['name' => 'name']);
$this->module->seeElement('input', ['id' => 'name']);
$this->module->seeElement('descendant-or-self::input[@id="name"]');
$this->module->dontSeeElement('#something-beyond');
$this->module->dontSeeElement('input', ['id' => 'something-beyond']);
$this->module->dontSeeElement('descendant-or-self::input[@id="something-beyond"]');
}
// regression test. https://github.com/Codeception/Codeception/issues/587
public function testSeeElementOnPageFails()
{
$this->setExpectedException("PHPUnit\Framework\AssertionFailedError");
$this->module->amOnPage('/form/field');
$this->module->dontSeeElement('input[name=name]');
}
public function testCookies()
{
$cookie_name = 'test_cookie';
$cookie_value = 'this is a test';
$this->module->amOnPage('/');
$this->module->setCookie('nocookie', '1111');
$this->module->setCookie($cookie_name, $cookie_value);
$this->module->setCookie('notthatcookie', '22222');
$this->module->seeCookie($cookie_name);
$this->module->dontSeeCookie('evil_cookie');
$cookie = $this->module->grabCookie($cookie_name);
$this->assertEquals($cookie_value, $cookie);
$this->module->resetCookie($cookie_name);
$this->module->dontSeeCookie($cookie_name);
}
public function testCookiesWithPath()
{
$cookie_name = 'cookie';
$cookie_value = 'tasty';
$this->module->amOnPage('/info');
$this->module->setCookie($cookie_name, $cookie_value, ['path' => '/info']);
$this->module->seeCookie($cookie_name, ['path' => '/info']);
$this->module->dontSeeCookie('evil_cookie');
$cookie = $this->module->grabCookie($cookie_name, ['path' => '/info']);
$this->assertEquals($cookie_value, $cookie);
$this->module->resetCookie($cookie_name, ['path' => '/info']);
$this->module->dontSeeCookie($cookie_name, ['path' => '/info']);
$this->module->dontSeeCookie($cookie_name);
}
public function testSendingCookies()
{
$this->module->amOnPage('/');
$this->module->setCookie('nocookie', '1111');
$this->module->amOnPage('/cookies');
$this->module->see('nocookie', 'pre');
}
public function testPageTitle()
{
$this->module->amOnPage('/');
$this->module->seeInTitle('TestEd Beta 2.0');
$this->module->dontSeeInTitle('Welcome to test app');
$this->module->amOnPage('/info');
$this->module->dontSeeInTitle('TestEd Beta 2.0');
}
public function testSeeFails()
{
$this->shouldFail();
$this->module->amOnPage('/');
$this->module->see('Text not here');
}
public function testSeeInsideFails()
{
$this->shouldFail();
$this->module->amOnPage('/info');
$this->module->see('woups', 'p');
}
public function testDontSeeInInsideFails()
{
$this->shouldFail();
$this->module->amOnPage('/info');
$this->module->dontSee('interesting', 'p');
}
public function testSeeElementFails()
{
$this->shouldFail();
$this->module->amOnPage('/info');
$this->module->seeElement('.alert');
}
public function testDontSeeElementFails()
{
$this->shouldFail();
$this->module->amOnPage('/info');
$this->module->dontSeeElement('#back');
}
public function testSeeInFieldFail()
{
$this->shouldFail();
$this->module->amOnPage('/form/empty');
$this->module->seeInField('#empty_textarea', 'xxx');
}
public function testSeeInFieldOnTextareaFails()
{
$this->shouldFail();
$this->module->amOnPage('/form/textarea');
$this->module->dontSeeInField('Description', 'sunrise');
}
public function testSeeCheckboxIsNotCheckedFails()
{
$this->shouldFail();
$this->module->amOnPage('/form/complex');
$this->module->dontSeeCheckboxIsChecked('#checkin');
}
public function testSeeCheckboxCheckedFails()
{
$this->shouldFail();
$this->module->amOnPage('/form/checkbox');
$this->module->seeCheckboxIsChecked('#checkin');
}
public function testDontSeeElementOnPageFails()
{
$this->shouldFail();
$this->module->amOnPage('/form/field');
$this->module->dontSeeElement('descendant-or-self::input[@id="name"]');
}
public function testStrictLocators()
{
$this->module->amOnPage('/login');
$this->module->seeElement(['id' => 'submit-label']);
$this->module->seeElement(['name' => 'password']);
$this->module->seeElement(['class' => 'optional']);
$this->module->seeElement(['css' => 'form.global_form_box']);
$this->module->seeElement(['xpath' => \Codeception\Util\Locator::tabIndex(4)]);
$this->module->fillField(['name' => 'password'], '123456');
$this->module->amOnPage('/form/select');
$this->module->selectOption(['name' => 'age'], 'child');
$this->module->amOnPage('/form/checkbox');
$this->module->checkOption(['name' => 'terms']);
$this->module->amOnPage('/');
$this->module->seeElement(['link' => 'Test']);
$this->module->click(['link' => 'Test']);
$this->module->seeCurrentUrlEquals('/form/hidden');
}
public function testFailStrictLocators()
{
$this->shouldFail();
$this->module->amOnPage('/form/checkbox');
$this->module->checkOption(['name' => 'age']);
}
public function testExample1()
{
$this->module->amOnPage('/form/example1');
$this->module->see('Login', 'button');
$this->module->fillField('#LoginForm_username', 'davert');
$this->module->fillField('#LoginForm_password', '123456');
$this->module->checkOption('#LoginForm_rememberMe');
$this->module->click('Login');
$login = data::get('form');
$this->assertEquals('davert', $login['LoginForm']['username']);
$this->assertEquals('123456', $login['LoginForm']['password']);
$this->assertNotEmpty($login['LoginForm']['rememberMe']);
}
public function testExample2()
{
$this->module->amOnPage('/form/example2');
$this->module->fillField('input[name=username]', 'davert');
$this->module->fillField('input[name=password]', '123456');
$this->module->click('Log on');
$login = data::get('form');
$this->assertEquals('davert', $login['username']);
$this->assertEquals('123456', $login['password']);
$this->assertEquals('login', $login['action']);
}
public function testAmpersand()
{
$this->module->amOnPage('/info');
$this->module->see('Kill & Destroy');
$this->module->see('Kill & Destroy', 'div');
}
/**
* https://github.com/Codeception/Codeception/issues/1091
*/
public function testExample4()
{
$this->module->amOnPage('/form/example4');
$this->module->click(['css' => '#register button[type="submit"]']);
$this->module->amOnPage('/form/example4');
$this->module->click('#register button[type="submit"]');
}
/**
* https://github.com/Codeception/Codeception/issues/1098
*/
public function testExample5()
{
$this->module->amOnPage('/form/example5');
$this->module->fillField('username', 'John');
$this->module->fillField('password', '1234');
$this->module->click('Login');
$this->module->seeCurrentUrlEquals('/form/example5?username=John&password=1234');
}
public function testExample5WithSubmitForm()
{
$this->module->amOnPage('/form/example5');
$this->module->submitForm('form', ['username' => 'John', 'password' => '1234']);
$this->module->seeCurrentUrlEquals('/form/example5?username=John&password=1234');
}
public function testExample5WithParams()
{
$this->module->amOnPage('/form/example5?a=b');
$this->module->fillField('username', 'John');
$this->module->fillField('password', '1234');
$this->module->click('Login');
$this->module->seeCurrentUrlEquals('/form/example5?username=John&password=1234');
}
public function testExample5WithSubmitFormAndParams()
{
$this->module->amOnPage('/form/example5?a=b');
$this->module->submitForm('form', ['username' => 'John', 'password' => '1234']);
$this->module->seeCurrentUrlEquals('/form/example5?username=John&password=1234');
}
/**
* @Issue https://github.com/Codeception/Codeception/issues/1212
*/
public function testExample9()
{
$this->module->amOnPage('/form/example9');
$this->module->attachFile('form[name=package_csv_form] input[name=xls_file]', 'app/avatar.jpg');
$this->module->click('Upload packages', 'form[name=package_csv_form]');
$this->assertNotEmpty(data::get('files'));
$files = data::get('files');
$this->assertArrayHasKey('xls_file', $files);
$form = data::get('form');
codecept_debug($form);
$this->assertArrayHasKey('submit', $form);
$this->assertArrayHasKey('MAX_FILE_SIZE', $form);
$this->assertArrayHasKey('form_name', $form);
}
public function testSubmitForm()
{
$this->module->amOnPage('/form/complex');
$this->module->submitForm('form', array(
'name' => 'Davert',
'description' => 'Is Codeception maintainer'
));
$form = data::get('form');
$this->assertEquals('Davert', $form['name']);
$this->assertEquals('Is Codeception maintainer', $form['description']);
$this->assertArrayNotHasKey('disabled_fieldset', $form);
$this->assertArrayNotHasKey('disabled_fieldset_textarea', $form);
$this->assertArrayNotHasKey('disabled_fieldset_select', $form);
$this->assertArrayNotHasKey('disabled_field', $form);
$this->assertEquals('kill_all', $form['action']);
}
public function testSubmitFormWithFillField()
{
$this->module->amOnPage('/form/complex');
$this->module->fillField('name', 'Kilgore Trout');
$this->module->fillField('description', 'Is a fish');
$this->module->submitForm('form', [
'description' => 'Is from Iliyum, NY'
]);
$form = data::get('form');
$this->assertEquals('Kilgore Trout', $form['name']);
$this->assertEquals('Is from Iliyum, NY', $form['description']);
}
public function testSubmitFormWithoutButton()
{
$this->module->amOnPage('/form/empty');
$this->module->submitForm('form', array(
'text' => 'Hello!'
));
$form = data::get('form');
$this->assertEquals('Hello!', $form['text']);
}
public function testSubmitFormWithAmpersand()
{
$this->module->amOnPage('/form/submitform_ampersands');
$this->module->submitForm('form', []);
$form = data::get('form');
$this->assertEquals('this & that', $form['test']);
}
public function testSubmitFormWithArrayField()
{
$this->module->amOnPage('/form/example17');
$this->module->submitForm('form', []);
$data = data::get('form');
$this->assertSame('baz', $data['FooBar']['bar']);
$this->assertArrayNotHasKey('FooBar[bar]', $data);
}
public function testSubmitFormMultiSelectWithArrayParameter()
{
$this->module->amOnPage('/form/submitform_multiple');
$this->module->submitForm('form', [
'select' => [
'see test one',
'not seen four'
]
]);
$form = data::get('form');
$this->assertCount(2, $form['select']);
$this->assertEquals('see test one', $form['select'][0]);
$this->assertEquals('not seen four', $form['select'][1]);
}
public function testSubmitFormWithMultiSelect()
{
$this->module->amOnPage('/form/submitform_multiple');
$this->module->submitForm('form', []);
$form = data::get('form');
$this->assertCount(2, $form['select']);
$this->assertEquals('see test one', $form['select'][0]);
$this->assertEquals('see test two', $form['select'][1]);
}
public function testSubmitFormCheckboxWithArrayParameter()
{
$this->module->amOnPage('/form/field_values');
$this->module->submitForm('form', [
'checkbox' => [
'not seen one',
'see test two',
'not seen three'
]
]);
$form = data::get('form');
$this->assertCount(3, $form['checkbox']);
$this->assertEquals('not seen one', $form['checkbox'][0]);
$this->assertEquals('see test two', $form['checkbox'][1]);
$this->assertEquals('not seen three', $form['checkbox'][2]);
}
public function testSubmitFormCheckboxWithBooleanArrayParameter()
{
$this->module->amOnPage('/form/field_values');
$this->module->submitForm('form', [
'checkbox' => [
true,
false,
true
]
]);
$form = data::get('form');
$this->assertCount(2, $form['checkbox']);
$this->assertEquals('not seen one', $form['checkbox'][0]);
$this->assertEquals('not seen two', $form['checkbox'][1]);
}
/**
* https://github.com/Codeception/Codeception/issues/1381
*/
public function testFillingFormFieldWithoutSubmitButton()
{
$this->module->amOnPage('/form/empty_fill');
$this->module->fillField('test', 'value');
}
public function testSubmitFormWithDefaultTextareaValue()
{
$this->module->amOnPage('/form/textarea');
$this->module->submitForm('form', []);
$form = data::get('form');
$this->assertEquals('sunrise', $form['description']);
}
/**
* @issue #1180
*/
public function testClickLinkWithInnerSpan()
{
$this->module->amOnPage('/form/example7');
$this->module->click("Buy Chocolate Bar");
$this->module->seeCurrentUrlEquals('/');
}
/*
* @issue #1304
*/
public function testSelectTwoSubmitsByText()
{
$this->module->amOnPage('/form/select_two_submits');
$this->module->selectOption('What kind of sandwich would you like?', 2);
$this->module->click('Save');
$form = data::get('form');
$this->assertEquals(2, $form['sandwich_select']);
}
public function testSelectTwoSubmitsByCSS()
{
$this->module->amOnPage('/form/select_two_submits');
$this->module->selectOption("form select[name='sandwich_select']", '2');
$this->module->click('Save');
$form = data::get('form');
$this->assertEquals(2, $form['sandwich_select']);
}
protected function shouldFail()
{
$this->setExpectedException('PHPUnit\Framework\AssertionFailedError');
}
/**
* https://github.com/Codeception/Codeception/issues/1051
*/
public function testSubmitFormWithTwoSubmitButtonsSubmitsCorrectValue()
{
$this->module->amOnPage('/form/example10');
$this->module->seeElement("#button2");
$this->module->click("#button2");
$form = data::get('form');
$this->assertArrayHasKey('button2', $form);
$this->assertArrayHasKey('username', $form);
$this->assertEquals('value2', $form['button2']);
$this->assertEquals('fred', $form['username']);
}
/**
* https://github.com/Codeception/Codeception/issues/1051
*/
public function testSubmitFormWithTwoSubmitButtonsSubmitsCorrectValueAfterFillField()
{
$this->module->amOnPage('/form/example10');
$this->module->fillField("username", "bob");
$this->module->click("#button2");
$form = data::get('form');
$this->assertArrayHasKey('button2', $form);
$this->assertArrayHasKey('username', $form);
$this->assertEquals('value2', $form['button2']);
$this->assertEquals('bob', $form['username']);
}
/*
* https://github.com/Codeception/Codeception/issues/1274
*/
public function testSubmitFormWithDocRelativePathForAction()
{
$this->module->amOnPage('/form/example12');
$this->module->submitForm('form', array(
'test' => 'value'
));
$this->module->seeCurrentUrlEquals('/form/example11');
}
public function testSubmitFormWithDocRelativePathForActionFromDefaultPage()
{
$this->module->amOnPage('/form/');
$this->module->submitForm('form', array(
'test' => 'value'
));
$this->module->seeCurrentUrlEquals('/form/example11');
}
public function testLinkWithDocRelativeURLFromDefaultPage()
{
$this->module->amOnPage('/form/');
$this->module->click('Doc-Relative Link');
$this->module->seeCurrentUrlEquals('/form/example11');
}
/*
* https://github.com/Codeception/Codeception/issues/1507
*/
public function testSubmitFormWithDefaultRadioAndCheckboxValues()
{
$this->module->amOnPage('/form/example16');
$this->module->submitForm('form', array(
'test' => 'value'
));
$form = data::get('form');
$this->assertArrayHasKey('checkbox1', $form, 'Checkbox value not sent');
$this->assertArrayHasKey('radio1', $form, 'Radio button value not sent');
$this->assertEquals('testing', $form['checkbox1']);
$this->assertEquals('to be sent', $form['radio1']);
}
public function testSubmitFormCheckboxWithBoolean()
{
$this->module->amOnPage('/form/example16');
$this->module->submitForm('form', array(
'checkbox1' => true
));
$form = data::get('form');
$this->assertArrayHasKey('checkbox1', $form, 'Checkbox value not sent');
$this->assertEquals('testing', $form['checkbox1']);
$this->module->amOnPage('/form/example16');
$this->module->submitForm('form', array(
'checkbox1' => false
));
$form = data::get('form');
$this->assertArrayNotHasKey('checkbox1', $form, 'Checkbox value sent');
}
public function testSubmitFormWithCheckboxesWithoutValue()
{
$this->module->amOnPage('/form/checkbox_default_value');
$this->module->submitForm('form', ['checkbox1' => true]);
$this->assertSame('on', data::get('query')['checkbox1']);
}
public function testSubmitFormWithButtons()
{
$this->module->amOnPage('/form/form_with_buttons');
$this->module->submitForm('form', array(
'test' => 'value',
));
$form = data::get('form');
$this->assertFalse(
isset($form['button1']) || isset($form['button2']) || isset($form['button3']) || isset($form['button4']),
'Button values should not be set'
);
$this->module->amOnPage('/form/form_with_buttons');
$this->module->submitForm('form', array(
'test' => 'value',
), 'button3');
$form = data::get('form');
$this->assertFalse(
isset($form['button1']) || isset($form['button2']) || isset($form['button4']),
'Button values for buttons 1, 2 and 4 should not be set'
);
$this->assertArrayHasKey('button3', $form, 'Button value for button3 should be set');
$this->assertEquals($form['button3'], 'third', 'Button value for button3 should equal third');
$this->module->amOnPage('/form/form_with_buttons');
$this->module->submitForm('form', array(
'test' => 'value',
), 'button4');
$form = data::get('form');
$this->assertFalse(
isset($form['button1']) || isset($form['button2']) || isset($form['button3']),
'Button values for buttons 1, 2 and 3 should not be set'
);
$this->assertArrayHasKey('button4', $form, 'Button value for button4 should be set');
$this->assertEquals($form['button4'], 'fourth', 'Button value for button4 should equal fourth');
}
/**
* https://github.com/Codeception/Codeception/issues/1409
*/
public function testWrongXpath()
{
$this->setExpectedException('Codeception\Exception\MalformedLocatorException');
$this->module->amOnPage('/');
$this->module->seeElement('//aas[asd}[sd]a[/[');
}
public function testWrongCSS()
{
$this->setExpectedException('Codeception\Exception\MalformedLocatorException');
$this->module->amOnPage('/');
$this->module->seeElement('.user#iasos<here');
}
public function testWrongStrictCSSLocator()
{
$this->setExpectedException('Codeception\Exception\MalformedLocatorException');
$this->module->amOnPage('/');
$this->module->seeElement(['css' => 'hel!1$<world']);
}
public function testWrongStrictXPathLocator()
{
$this->setExpectedException('Codeception\Exception\MalformedLocatorException');
$this->module->amOnPage('/');
$this->module->seeElement(['xpath' => 'hello<wo>rld']);
}
public function testFormWithFilesArray()
{
$this->module->amOnPage('/form/example13');
$this->module->attachFile('foo[bar]', 'app/avatar.jpg');
$this->module->attachFile('foo[baz]', 'app/avatar.jpg');
$this->module->click('Submit');
$this->assertNotEmpty(data::get('files'));
$files = data::get('files');
$this->assertArrayHasKey('bar', $files['foo']['name']);
$this->assertArrayHasKey('baz', $files['foo']['name']);
}
public function testFormWithFileSpecialCharNames()
{
$this->module->amOnPage('/form/example14');
$this->module->attachFile('foo bar', 'app/avatar.jpg');
$this->module->attachFile('foo.baz', 'app/avatar.jpg');
$this->module->click('Submit');
$this->assertNotEmpty(data::get('files'));
$files = data::get('files');
$this->assertNotEmpty($files);
$this->assertArrayHasKey('foo_bar', $files);
$this->assertArrayHasKey('foo_baz', $files);
}
/**
* @Issue https://github.com/Codeception/Codeception/issues/1454
*/
public function testTextFieldByNameFirstNotCss()
{
$this->module->amOnPage('/form/example15');
$this->module->fillField('title', 'Special Widget');
$this->module->fillField('description', 'description');
$this->module->fillField('price', '19.99');
$this->module->click('Create');
$data = data::get('form');
$this->assertEquals('Special Widget', $data['title']);
}
/**
* @Issue https://github.com/Codeception/Codeception/issues/1535
*/
public function testCheckingOptionsWithComplexNames()
{
$this->module->amOnPage('/form/bug1535');
$this->module->checkOption('#bmessage-topicslinks input[value="4"]');
$this->module->click('Submit');
$data = data::get('form');
$this->assertContains(4, $data['BMessage']['topicsLinks']);
}
/**
* @Issue https://github.com/Codeception/Codeception/issues/1585
* @Issue https://github.com/Codeception/Codeception/issues/1602
*/
public function testUnreachableField()
{
$this->module->amOnPage('/form/bug1585');
$this->module->fillField('textarea[name="captions[]"]', 'test2');
$this->module->fillField('items[1][]', 'test3');
$this->module->fillField('input[name="users[]"]', 'davert');
$this->module->attachFile('input[name="files[]"]', 'app/avatar.jpg');
$this->module->click('Submit');
$data = data::get('form');
$this->assertContains('test3', $data['items'][1]);
$this->assertContains('test2', $data['captions']);
$this->assertContains('davert', $data['users']);
}
public function testSubmitAdjacentForms()
{
$this->module->amOnPage('/form/submit_adjacentforms');
$this->module->submitForm('#form-2', []);
$data = data::get('form');
$this->assertArrayHasKey('second-field', $data);
$this->assertArrayNotHasKey('first-field', $data);
$this->assertEquals('Killgore Trout', $data['second-field']);
}
public function testSubmitAdjacentFormsByButton()
{
$this->module->amOnPage('/form/submit_adjacentforms');
$this->module->fillField('first-field', 'First');
$this->module->fillField('second-field', 'Second');
$this->module->click('#submit1');
$data = data::get('form');
$this->assertArrayHasKey('first-field', $data);
$this->assertArrayNotHasKey('second-field', $data);
$this->assertEquals('First', $data['first-field']);
$this->module->amOnPage('/form/submit_adjacentforms');
$this->module->fillField('first-field', 'First');
$this->module->fillField('second-field', 'Second');
$this->module->click('#submit2');
$data = data::get('form');
$this->assertArrayNotHasKey('first-field', $data);
$this->assertArrayHasKey('second-field', $data);
$this->assertEquals('Second', $data['second-field']);
}
public function testArrayField()
{
$this->module->amOnPage('/form/example17');
$this->module->seeInField('input[name="FooBar[bar]"]', 'baz');
$this->module->seeInField('input[name="Food[beer][yum][yeah]"]', 'mmhm');
}
public function testFillFieldSquareBracketNames()
{
$this->module->amOnPage('/form/names-sq-brackets');
$this->module->fillField('//input[@name="input_text"]', 'filling this input');
$this->module->fillField('//input[@name="input[text][]"]', 'filling this input');
$this->module->fillField('//textarea[@name="textarea_name"]', 'filling this textarea');
$this->module->fillField('//textarea[@name="textarea[name][]"]', 'filling this textarea');
$this->module->fillField('//textarea[@name="textarea[name][]"]', 'filling this textarea once again');
$this->module->fillField('//textarea[@name="textarea_name"]', 'filling this textarea');
$this->module->fillField('//textarea[@name="textarea[name][]"]', 'filling this textarea more');
$this->module->fillField('//textarea[@name="textarea[name][]"]', 'filling this textarea most');
}
public function testSelectAndCheckOptionSquareBracketNames()
{
$this->module->amOnPage('/form/names-sq-brackets');
$this->module->selectOption('//input[@name="input_radio_name"]', '1');
$this->module->selectOption('//input[@name="input_radio_name"]', '2');
$this->module->checkOption('//input[@name="input_checkbox_name"]', '1');
$this->module->checkOption('//input[@name="input_checkbox_name"]', '2');
$this->module->checkOption('//input[@name="input[checkbox][name][]"]', '1');
$this->module->checkOption('//input[@name="input[checkbox][name][]"]', '2');
$this->module->checkOption('//input[@name="input[checkbox][name][]"]', '1');
$this->module->selectOption('//select[@name="select_name"]', '1');
$this->module->selectOption('//input[@name="input[radio][name][]"]', '1');
$this->module->selectOption('//input[@name="input[radio][name][]"]', '2');
$this->module->selectOption('//input[@name="input[radio][name][]"]', '1');
$this->module->selectOption('//select[@name="select[name][]"]', '1');
}
public function testFillFieldWithAmpersand()
{
$this->module->amOnPage('/form/field');
$this->module->fillField('Name', 'this & that');
$this->module->click('Submit');
$form = data::get('form');
$this->assertEquals('this & that', $form['name']);
}
public function testSeeInDeactivatedField()
{
$this->module->amOnPage('/form/complex');
$this->module->seeInField('#disabled_field', 'disabled_field');
$this->module->seeInField('#salutation', 'mr');
}
public function testSwitchToIframe()
{
$this->module->amOnPage('/iframe');
$this->module->switchToIframe('content');
$this->module->see('Is that interesting?');
$this->module->click('Ссылочка');
}
public function testGrabMultiple()
{
$this->module->amOnPage('/info');
$arr = $this->module->grabMultiple('#grab-multiple a:first-child');
$this->assertCount(1, $arr);
$this->assertEquals('First', $arr[0]);
$arr = $this->module->grabMultiple('#grab-multiple a');
$this->assertCount(3, $arr);
$this->assertEquals('First', $arr[0]);
$this->assertEquals('Second', $arr[1]);
$this->assertEquals('Third', $arr[2]);
// href for WebDriver with selenium returns a full link, so testing with ID
$arr = $this->module->grabMultiple('#grab-multiple a', 'id');
$this->assertCount(3, $arr);
$this->assertEquals('first-link', $arr[0]);
$this->assertEquals('second-link', $arr[1]);
$this->assertEquals('third-link', $arr[2]);
}
/**
* @issue https://github.com/Codeception/Codeception/issues/2960
*/
public function testClickMultiByteLink()
{
$this->module->amOnPage('/info');
$this->module->click('Franšízy - pobočky');
$this->module->seeCurrentUrlEquals('/');
}
/**
* @issue https://github.com/Codeception/Codeception/issues/3528
*/
public function testClickThrowsElementNotFoundExceptionWhenTextContainsNumber()
{
$this->setExpectedException('Codeception\Exception\ElementNotFound',
"'Link 2' is invalid CSS and XPath selector and Link or Button element with 'name=Link 2' was not found.");
$this->module->amOnPage('/info');
$this->module->click('Link 2');
}
public function testClickExistingLinkWithTextContainingNumber()
{
$this->module->amOnPage('/info');
$this->module->click('Link 3');
$this->module->seeCurrentUrlEquals('/cookies');
}
public function testSelectOptionValueSelector()
{
$this->module->amOnPage('/form/select_selectors');
$this->module->selectOption('age', ['value' => '20']);
$this->module->click('Submit');
$data = data::get('form');
$this->assertEquals('20', $data['age']);
}
public function testSelectOptionTextSelector()
{
$this->module->amOnPage('/form/select_selectors');
$this->module->selectOption('age', ['text' => '20']);
$this->module->seeOptionIsSelected('age', '20');
$this->module->selectOption('age', ['text' => '21']);
$this->module->seeOptionIsSelected('age', '21');
}
public function testClickButtonInLink()
{
$this->module->amOnPage('/form/button_in_link');
$this->module->click('More Info');
$this->module->seeCurrentUrlEquals('/info');
}
public function testClickButtonInLinkAndSpan()
{
$this->module->amOnPage('/form/button_in_link');
$this->module->click('Span Info');
$this->module->seeCurrentUrlEquals('/info');
}
public function testClickButtonInLinkUsingCssLocator()
{
$this->module->amOnPage('/form/button_in_link');
$this->module->click(['css' => 'input[value="More Info"]']);
$this->module->seeCurrentUrlEquals('/info');
}
public function testClickButtonInLinkAndSpanUsingCssLocator()
{
$this->module->amOnPage('/form/button_in_link');
$this->module->click(['css' => 'input[value="Span Info"]']);
$this->module->seeCurrentUrlEquals('/info');
}
public function testClickHashLink()
{
$this->module->amOnPage('/form/anchor');
$this->module->click('Hash Link');
$this->module->seeCurrentUrlEquals('/form/anchor');
}
public function testClickHashButton()
{
$this->module->amOnPage('/form/anchor');
$this->module->click('Hash Button');
$this->module->seeCurrentUrlEquals('/form/anchor');
}
public function testSubmitHashForm()
{
$this->module->amOnPage('/form/anchor');
$this->module->click('Hash Form');
$this->module->seeCurrentUrlEquals('/form/anchor');
}
public function testClickingRelativeLinkHonoursBaseHref()
{
$this->module->amOnPage('/basehref');
$this->module->click('Relative Link');
$this->module->seeCurrentUrlEquals('/form/example7');
}
public function testSubmittingRelativeFormHonoursBaseHref()
{
$this->module->amOnPage('/basehref');
$this->module->click('Relative Form');
$this->module->seeCurrentUrlEquals('/form/example5');
}
public function testClickingRelativeLinkInContextHonoursBaseHref()
{
$this->module->amOnPage('/basehref');
$this->module->click('Relative Link', 'p');
$this->module->seeCurrentUrlEquals('/form/example7');
}
public function testSubmittingRelativeForminContextHonoursBaseHref()
{
$this->module->amOnPage('/basehref');
$this->module->fillField('rus', 'test value');
$this->module->click('Relative Form', '#button-container');
$this->module->seeCurrentUrlEquals('/form/example5');
}
public function testClickingFormButtonInContextSubmitsOutOfContextFormElements()
{
$this->module->amOnPage('/basehref');
$this->module->click('Relative Form', '#button-container');
$this->assertArrayHasKey('rus', data::get('form'));
}
public function testAttachFileThrowsCorrectMessageWhenFileDoesNotExist()
{
$filename = 'does-not-exist.jpg';
$expectedMessage = 'File does not exist: ' . codecept_data_dir($filename);
$this->setExpectedException('InvalidArgumentException', $expectedMessage);
$this->module->amOnPage('/form/file');
$this->module->attachFile('Avatar', $filename);
}
public function testPasswordArgument()
{
$this->module->amOnPage('/form/password_argument');
$this->module->fillField('password', new \Codeception\Step\Argument\PasswordArgument('thisissecret'));
$this->module->click('Submit');
$data = data::get('form');
$this->assertEquals('thisissecret', $data['password']);
}
}