-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
973 lines (964 loc) · 51.9 KB
/
index.html
File metadata and controls
973 lines (964 loc) · 51.9 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="api_key" content="iapifmceeokikomajpccajhjpacjmibe" />
<meta name="propeller" content="2b4bafbf9223d84f906732fc46682e1b" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/styles/doc.css" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="./assets/prism/prism.css" />
<link rel="stylesheet" href="./assets/prism/prism-support.css" />
<link rel="stylesheet" href="./assets/styles/main.css" />
<!-- Favicons -->
<link rel="apple-touch-icon" href="./favicons/apple-touch-icon.png.png" sizes="128x128" />
<link rel="icon" href="./favicons/icon32.png" type="image/png" sizes="32x32" />
<link rel="icon" href="./favicons/icon16.png" type="image/png" sizes="16x16" />
<link rel="icon" href="./favicons/android-chrome-192x192.png" type="image/png" sizes="192x192" />
<link rel="icon" href="./favicons/android-chrome-512x512.png" type="image/png" sizes="512x512" />
<link rel="manifest" href="./favicons/manifest.json" />
<link rel="icon" href="./favicons/favicon.ico" />
<title>Test | Auto click / Auto Fill</title>
<meta name="description"
content="Fill input field or click button or link anything anywhere. easy configure in few steps and work like PRO Auto click / Auto fill is chrome extension developed with HTML, CSS, Javascript. Quickly configure your job using XPath and work like PRO.." />
<meta property="og:description"
content="Fill input field or click button or link anything anywhere. easy configure in few steps and work like PRO Auto click / Auto fill is chrome extension developed with HTML, CSS, Javascript. Quickly configure your job using XPath and work like PRO.." />
<meta property="og:site_name" content="Auto click / Auto Fill" />
<style>
h2 {
color: var(--bs-primary);
margin-top: 40px;
}
h3 {
color: var(--bs-red);
margin-top: 20px;
}
</style>
<script>
// Delete the Funding Choices cookie if consent is more than 12 months old
try {
const nm = "FCCDCF"; // Match name of Funding Choices cookie
const dm = "getautoclicker.com"; // Match domain of Funding Choices cookie
const pa = "/"; // Match path of Funding Choices cookie
let tc = ('; ' + document.cookie).split('; ' + nm + '=');
if (tc.length === 2) {
tc = decodeURIComponent(tc.pop().split(';').shift());
tc = JSON.parse(tc)[3][0].substring(1, 9);
tc = Uint8Array.from(window.atob(tc), (v) => v.charCodeAt(0));
let dt = (tc[0] * 2 ** 28) + (tc[1] * 2 ** 20) + (tc[2] * 2 ** 12) +
(tc[3] * 2 ** 4) + (tc[4] >> 4);
if (Date.now() / 1000 - dt / 10 > 86400 * 365)
document.cookie = nm + "=;path=" + pa + ";domain=" + dm +
";expires=" + new Date(0).toUTCString();
}
} catch (e) { }
</script>
<script src="./assets/scripts/color-modes.js"></script>
</head>
<body>
<svg class="d-none">
<symbol id="arrow-right" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1 8a.5.5.0 01.5-.5h11.793l-3.147-3.146a.5.5.0 01.708-.708l4 4a.5.5.0 010 .708l-4 4a.5.5.0 01-.708-.708L13.293 8.5H1.5A.5.5.0 011 8z">
</path>
</symbol>
<symbol id="arrow-right-short" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M4 8a.5.5.0 01.5-.5h5.793L8.146 5.354a.5.5.0 11.708-.708l3 3a.5.5.0 010 .708l-3 3a.5.5.0 01-.708-.708L10.293 8.5H4.5A.5.5.0 014 8">
</path>
</symbol>
<symbol id="book-half" viewBox="0 0 16 16">
<path
d="M8.5 2.687c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492V2.687zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5.0 000 2.5v11a.5.5.0 00.707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5.0 00.78.0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5.0 0016 13.5v-11a.5.5.0 00-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783z">
</path>
</symbol>
<symbol id="box-seam" viewBox="0 0 16 16">
<path
d="M8.186 1.113a.5.5.0 00-.372.0L1.846 3.5l2.404.961L10.404 2l-2.218-.887zm3.564 1.426L5.596 5 8 5.961 14.154 3.5l-2.404-.961zm3.25 1.7-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V6.838L1 4.239v7.923l6.5 2.6zM7.443.184a1.5 1.5.0 011.114.0l7.129 2.852A.5.5.0 0116 3.5v8.662a1 1 0 01-.629.928l-7.185 2.874a.5.5.0 01-.372.0L.63 13.09A1 1 0 010 12.162V3.5a.5.5.0 01.314-.464L7.443.184z">
</path>
</symbol>
<symbol id="braces" viewBox="0 0 16 16">
<path
d="M2.114 8.063V7.9c1.005-.102 1.497-.615 1.497-1.6V4.503c0-1.094.39-1.538 1.354-1.538h.273V2h-.376C3.25 2 2.49 2.759 2.49 4.352v1.524c0 1.094-.376 1.456-1.49 1.456v1.299c1.114.0 1.49.362 1.49 1.456v1.524c0 1.593.759 2.352 2.372 2.352h.376v-.964h-.273c-.964.0-1.354-.444-1.354-1.538V9.663c0-.984-.492-1.497-1.497-1.6zM13.886 7.9v.163c-1.005.103-1.497.616-1.497 1.6v1.798c0 1.094-.39 1.538-1.354 1.538h-.273v.964h.376c1.613.0 2.372-.759 2.372-2.352v-1.524c0-1.094.376-1.456 1.49-1.456V7.332c-1.114.0-1.49-.362-1.49-1.456V4.352C13.51 2.759 12.75 2 11.138 2h-.376v.964h.273c.964.0 1.354.444 1.354 1.538V6.3c0 .984.492 1.497 1.497 1.6z">
</path>
</symbol>
<symbol id="braces-asterisk" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1.114 8.063V7.9c1.005-.102 1.497-.615 1.497-1.6V4.503c0-1.094.39-1.538 1.354-1.538h.273V2h-.376C2.25 2 1.49 2.759 1.49 4.352v1.524c0 1.094-.376 1.456-1.49 1.456v1.299c1.114.0 1.49.362 1.49 1.456v1.524c0 1.593.759 2.352 2.372 2.352h.376v-.964h-.273c-.964.0-1.354-.444-1.354-1.538V9.663c0-.984-.492-1.497-1.497-1.6zM14.886 7.9v.164c-1.005.103-1.497.616-1.497 1.6v1.798c0 1.094-.39 1.538-1.354 1.538h-.273v.964h.376c1.613.0 2.372-.759 2.372-2.352v-1.524c0-1.094.376-1.456 1.49-1.456v-1.3c-1.114.0-1.49-.362-1.49-1.456V4.352C14.51 2.759 13.75 2 12.138 2h-.376v.964h.273c.964.0 1.354.444 1.354 1.538V6.3c0 .984.492 1.497 1.497 1.6zM7.5 11.5V9.207l-1.621 1.621-.707-.707L6.792 8.5H4.5v-1h2.293L5.172 5.879l.707-.707L7.5 6.792V4.5h1v2.293l1.621-1.621.707.707L9.208 7.5H11.5v1H9.207l1.621 1.621-.707.707L8.5 9.208V11.5h-1z">
</path>
</symbol>
<symbol id="check2" viewBox="0 0 16 16">
<path
d="M13.854 3.646a.5.5.0 010 .708l-7 7a.5.5.0 01-.708.0l-3.5-3.5a.5.5.0 11.708-.708L6.5 10.293l6.646-6.647a.5.5.0 01.708.0z">
</path>
</symbol>
<symbol id="chevron-expand" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M3.646 9.146a.5.5.0 01.708.0L8 12.793l3.646-3.647a.5.5.0 01.708.708l-4 4a.5.5.0 01-.708.0l-4-4a.5.5.0 010-.708zm0-2.292a.5.5.0 00.708.0L8 3.207l3.646 3.647a.5.5.0 00.708-.708l-4-4a.5.5.0 00-.708.0l-4 4a.5.5.0 000 .708z">
</path>
</symbol>
<symbol id="circle-half" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 108 1v14zm0 1A8 8 0 118 0a8 8 0 010 16z"></path>
</symbol>
<symbol id="clipboard" viewBox="0 0 16 16">
<path
d="M4 1.5H3a2 2 0 00-2 2V14a2 2 0 002 2h10a2 2 0 002-2V3.5a2 2 0 00-2-2h-1v1h1a1 1 0 011 1V14a1 1 0 01-1 1H3a1 1 0 01-1-1V3.5a1 1 0 011-1h1v-1z">
</path>
<path
d="M9.5 1a.5.5.0 01.5.5v1a.5.5.0 01-.5.5h-3A.5.5.0 016 2.5v-1a.5.5.0 01.5-.5h3zm-3-1A1.5 1.5.0 005 1.5v1A1.5 1.5.0 006.5 4h3A1.5 1.5.0 0011 2.5v-1A1.5 1.5.0 009.5.0h-3z">
</path>
</symbol>
<symbol id="code" viewBox="0 0 16 16">
<path
d="M5.854 4.854a.5.5.0 10-.708-.708l-3.5 3.5a.5.5.0 000 .708l3.5 3.5a.5.5.0 00.708-.708L2.707 8l3.147-3.146zm4.292.0a.5.5.0 01.708-.708l3.5 3.5a.5.5.0 010 .708l-3.5 3.5a.5.5.0 01-.708-.708L13.293 8l-3.147-3.146z">
</path>
</symbol>
<symbol id="file-earmark-richtext" viewBox="0 0 16 16">
<path
d="M14 4.5V14a2 2 0 01-2 2H4a2 2 0 01-2-2V2a2 2 0 012-2h5.5L14 4.5zm-3 0A1.5 1.5.0 019.5 3V1H4A1 1 0 003 2v12a1 1 0 001 1h8a1 1 0 001-1V4.5h-2z">
</path>
<path
d="M4.5 12.5A.5.5.0 015 12h3a.5.5.0 010 1H5a.5.5.0 01-.5-.5zm0-2A.5.5.0 015 10h6a.5.5.0 010 1H5a.5.5.0 01-.5-.5zm1.639-3.708 1.33.886 1.854-1.855a.25.25.0 01.289-.047l1.888.974V8.5A.5.5.0 0111 9H5a.5.5.0 01-.5-.5V8s1.54-1.274 1.639-1.208zM6.25 6a.75.75.0 100-1.5.75.75.0 000 1.5z">
</path>
</symbol>
<symbol id="globe2" viewBox="0 0 16 16">
<path
d="M0 8a8 8 0 1116 0A8 8 0 010 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855-.143.268-.276.56-.395.872.705.157 1.472.257 2.282.287V1.077zM4.249 3.539c.142-.384.304-.744.481-1.078a6.7 6.7.0 01.597-.933A7.01 7.01.0 003.051 3.05c.362.184.763.349 1.198.49zM3.509 7.5c.036-1.07.188-2.087.436-3.008A9.124 9.124.0 012.38 3.825 6.964 6.964.0 001.018 7.5h2.49zm1.4-2.741a12.344 12.344.0 00-.4 2.741H7.5V5.091c-.91-.03-1.783-.145-2.591-.332zM8.5 5.09V7.5h2.99a12.342 12.342.0 00-.399-2.741c-.808.187-1.681.301-2.591.332zM4.51 8.5c.035.987.176 1.914.399 2.741A13.612 13.612.0 017.5 10.91V8.5H4.51zm3.99.0v2.409c.91.03 1.783.145 2.591.332.223-.827.364-1.754.4-2.741H8.5zm-3.282 3.696c.12.312.252.604.395.872.552 1.035 1.218 1.65 1.887 1.855V11.91c-.81.03-1.577.13-2.282.287zm.11 2.276a6.696 6.696.0 01-.598-.933 8.853 8.853.0 01-.481-1.079 8.38 8.38.0 00-1.198.49 7.01 7.01.0 002.276 1.522zm-1.383-2.964A13.36 13.36.0 013.508 8.5h-2.49a6.963 6.963.0 001.362 3.675c.47-.258.995-.482 1.565-.667zm6.728 2.964a7.009 7.009.0 002.275-1.521 8.376 8.376.0 00-1.197-.49 8.853 8.853.0 01-.481 1.078 6.688 6.688.0 01-.597.933zM8.5 11.909v3.014c.67-.204 1.335-.82 1.887-1.855.143-.268.276-.56.395-.872A12.63 12.63.0 008.5 11.91zm3.555-.401c.57.185 1.095.409 1.565.667A6.963 6.963.0 0014.982 8.5h-2.49a13.36 13.36.0 01-.437 3.008zM14.982 7.5A6.963 6.963.0 0013.62 3.825c-.47.258-.995.482-1.565.667.248.92.4 1.938.437 3.008h2.49zM11.27 2.461c.177.334.339.694.482 1.078a8.368 8.368.0 001.196-.49 7.01 7.01.0 00-2.275-1.52c.218.283.418.597.597.932zm-.488 1.343a7.765 7.765.0 00-.395-.872C9.835 1.897 9.17 1.282 8.5 1.077V4.09c.81-.03 1.577-.13 2.282-.287z">
</path>
</symbol>
<symbol id="grid-fill" viewBox="0 0 16 16">
<path
d="M1 2.5A1.5 1.5.0 012.5 1h3A1.5 1.5.0 017 2.5v3A1.5 1.5.0 015.5 7h-3A1.5 1.5.0 011 5.5v-3zm8 0A1.5 1.5.0 0110.5 1h3A1.5 1.5.0 0115 2.5v3A1.5 1.5.0 0113.5 7h-3A1.5 1.5.0 019 5.5v-3zm-8 8A1.5 1.5.0 012.5 9h3A1.5 1.5.0 017 10.5v3A1.5 1.5.0 015.5 15h-3A1.5 1.5.0 011 13.5v-3zm8 0A1.5 1.5.0 0110.5 9h3a1.5 1.5.0 011.5 1.5v3A1.5 1.5.0 0113.5 15h-3A1.5 1.5.0 019 13.5v-3z">
</path>
</symbol>
<symbol id="lightning-charge-fill" viewBox="0 0 16 16">
<path
d="M11.251.068a.5.5.0 01.227.58L9.677 6.5H13a.5.5.0 01.364.843l-8 8.5a.5.5.0 01-.842-.49L6.323 9.5H3a.5.5.0 01-.364-.843l8-8.5a.5.5.0 01.615-.09z">
</path>
</symbol>
<symbol id="list" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M2.5 12a.5.5.0 01.5-.5h10a.5.5.0 010 1H3a.5.5.0 01-.5-.5zm0-4a.5.5.0 01.5-.5h10a.5.5.0 010 1H3A.5.5.0 012.5 8zm0-4a.5.5.0 01.5-.5h10a.5.5.0 010 1H3A.5.5.0 012.5 4z">
</path>
</symbol>
<symbol id="magic" viewBox="0 0 16 16">
<path
d="M9.5 2.672a.5.5.0 101 0V.843a.5.5.0 00-1 0v1.829zm4.5.035A.5.5.0 0013.293 2L12 3.293a.5.5.0 10.707.707L14 2.707zM7.293 4A.5.5.0 108 3.293L6.707 2A.5.5.0 006 2.707L7.293 4zm-.621 2.5a.5.5.0 100-1H4.843a.5.5.0 100 1h1.829zm8.485.0a.5.5.0 100-1h-1.829a.5.5.0 000 1h1.829zM13.293 10A.5.5.0 1014 9.293L12.707 8A.5.5.0 1012 8.707L13.293 10zM9.5 11.157a.5.5.0 001 0V9.328a.5.5.0 00-1 0v1.829zm1.854-5.097a.5.5.0 000-.706l-.708-.708a.5.5.0 00-.707.0L8.646 5.94a.5.5.0 000 .707l.708.708a.5.5.0 00.707.0l1.293-1.293zm-3 3a.5.5.0 000-.706l-.708-.708a.5.5.0 00-.707.0L.646 13.94a.5.5.0 000 .707l.708.708a.5.5.0 00.707.0L8.354 9.06z">
</path>
</symbol>
<symbol id="menu-button-wide-fill" viewBox="0 0 16 16">
<path
d="M1.5.0A1.5 1.5.0 000 1.5v2A1.5 1.5.0 001.5 5h13A1.5 1.5.0 0016 3.5v-2A1.5 1.5.0 0014.5.0h-13zm1 2h3a.5.5.0 010 1h-3a.5.5.0 010-1zm9.927.427A.25.25.0 0112.604 2h.792a.25.25.0 01.177.427l-.396.396a.25.25.0 01-.354.0l-.396-.396zM0 8a2 2 0 012-2h12a2 2 0 012 2v5a2 2 0 01-2 2H2a2 2 0 01-2-2V8zm1 3v2a1 1 0 001 1h12a1 1 0 001-1v-2H1zm14-1V8a1 1 0 00-1-1H2A1 1 0 001 8v2h14zM2 8.5a.5.5.0 01.5-.5h9a.5.5.0 010 1h-9A.5.5.0 012 8.5zm0 4a.5.5.0 01.5-.5h6a.5.5.0 010 1h-6a.5.5.0 01-.5-.5z">
</path>
</symbol>
<symbol id="moon-stars-fill" viewBox="0 0 16 16">
<path
d="M6 .278a.768.768.0 01.08.858 7.208 7.208.0 00-.878 3.46c0 4.021 3.278 7.277 7.318 7.277.527.0 1.04-.055 1.533-.16a.787.787.0 01.81.316.733.733.0 01-.031.893A8.349 8.349.0 018.344 16C3.734 16 0 12.286.0 7.71.0 4.266 2.114 1.312 5.124.06A.752.752.0 016 .278z">
</path>
<path
d="M10.794 3.148a.217.217.0 01.412.0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217.0 010 .412l-1.162.387A1.734 1.734.0 0011.593 7.69l-.387 1.162a.217.217.0 01-.412.0l-.387-1.162A1.734 1.734.0 009.31 6.593l-1.162-.387a.217.217.0 010-.412l1.162-.387a1.734 1.734.0 001.097-1.097l.387-1.162zM13.863.099a.145.145.0 01.274.0l.258.774c.115.346.386.617.732.732l.774.258a.145.145.0 010 .274l-.774.258a1.156 1.156.0 00-.732.732l-.258.774a.145.145.0 01-.274.0l-.258-.774a1.156 1.156.0 00-.732-.732l-.774-.258a.145.145.0 010-.274l.774-.258c.346-.115.617-.386.732-.732L13.863.1z">
</path>
</symbol>
<symbol id="palette2" viewBox="0 0 16 16">
<path
d="M0 .5A.5.5.0 01.5.0h5a.5.5.0 01.5.5v5.277l4.147-4.131a.5.5.0 01.707.0l3.535 3.536a.5.5.0 010 .708L10.261 10H15.5a.5.5.0 01.5.5v5a.5.5.0 01-.5.5H3a2.99 2.99.0 01-2.121-.879A2.99 2.99.0 010 13.044m6-.21 7.328-7.3-2.829-2.828L6 7.188v5.647zM4.5 13a1.5 1.5.0 10-3 0 1.5 1.5.0 003 0zM15 15v-4H9.258l-4.015 4H15zM0 .5v12.495V.5z">
</path>
<path d="M0 12.995V13a3.07 3.07.0 000-.005z"></path>
</symbol>
<symbol id="plugin" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1 8a7 7 0 112.898 5.673c-.167-.121-.216-.406-.002-.62l1.8-1.8a3.5 3.5.0 004.572-.328l1.414-1.415a.5.5.0 000-.707l-.707-.707 1.559-1.563a.5.5.0 10-.708-.706l-1.559 1.562-1.414-1.414 1.56-1.562a.5.5.0 10-.707-.706l-1.56 1.56-.707-.706a.5.5.0 00-.707.0L5.318 5.975a3.5 3.5.0 00-.328 4.571l-1.8 1.8c-.58.58-.62 1.6.121 2.137A8 8 0 100 8a.5.5.0 001 0z">
</path>
</symbol>
<symbol id="plus" viewBox="0 0 16 16">
<path d="M8 4a.5.5.0 01.5.5v3h3a.5.5.0 010 1h-3v3a.5.5.0 01-1 0v-3h-3a.5.5.0 010-1h3v-3A.5.5.0 018 4z"></path>
</symbol>
<symbol id="sun-fill" viewBox="0 0 16 16">
<path
d="M8 12a4 4 0 100-8 4 4 0 000 8zM8 0a.5.5.0 01.5.5v2a.5.5.0 01-1 0v-2A.5.5.0 018 0zm0 13a.5.5.0 01.5.5v2a.5.5.0 01-1 0v-2A.5.5.0 018 13zm8-5a.5.5.0 01-.5.5h-2a.5.5.0 010-1h2a.5.5.0 01.5.5zM3 8a.5.5.0 01-.5.5h-2a.5.5.0 010-1h2A.5.5.0 013 8zm10.657-5.657a.5.5.0 010 .707l-1.414 1.415a.5.5.0 11-.707-.708l1.414-1.414a.5.5.0 01.707.0zm-9.193 9.193a.5.5.0 010 .707L3.05 13.657a.5.5.0 01-.707-.707l1.414-1.414a.5.5.0 01.707.0zm9.193 2.121a.5.5.0 01-.707.0l-1.414-1.414a.5.5.0 01.707-.707l1.414 1.414a.5.5.0 010 .707zM4.464 4.465a.5.5.0 01-.707.0L2.343 3.05a.5.5.0 11.707-.707l1.414 1.414a.5.5.0 010 .708z">
</path>
</symbol>
<symbol id="three-dots" viewBox="0 0 16 16">
<path
d="M3 9.5a1.5 1.5.0 110-3 1.5 1.5.0 010 3zm5 0a1.5 1.5.0 110-3 1.5 1.5.0 010 3zm5 0a1.5 1.5.0 110-3 1.5 1.5.0 010 3z">
</path>
</symbol>
<symbol id="tools" viewBox="0 0 16 16">
<path
d="M1 0 0 1l2.2 3.081a1 1 0 00.815.419h.07a1 1 0 01.708.293l2.675 2.675-2.617 2.654A3.003 3.003.0 000 13a3 3 0 105.878-.851l2.654-2.617.968.968-.305.914a1 1 0 00.242 1.023l3.356 3.356a1 1 0 001.414.0l1.586-1.586a1 1 0 000-1.414l-3.356-3.356a1 1 0 00-1.023-.242L10.5 9.5l-.96-.96 2.68-2.643A3.005 3.005.0 0016 3c0-.269-.035-.53-.102-.777l-2.14 2.141L12 4l-.364-1.757L13.777.102a3 3 0 00-3.675 3.68L7.462 6.46 4.793 3.793A1 1 0 014.5 3.086v-.071a1 1 0 00-.419-.814L1 0zm9.646 10.646a.5.5.0 01.708.0l3 3a.5.5.0 01-.708.708l-3-3a.5.5.0 010-.708zM3 11l.471.242.529.026.287.445.445.287.026.529L5 13l-.242.471-.026.529-.445.287-.287.445-.529.026L3 15l-.471-.242L2 14.732l-.287-.445L1.268 14l-.026-.529L1 13l.242-.471.026-.529.445-.287.287-.445.529-.026L3 11z">
</path>
</symbol>
<symbol id="ui-radios" viewBox="0 0 16 16">
<path
d="M7 2.5a.5.5.0 01.5-.5h7a.5.5.0 01.5.5v1a.5.5.0 01-.5.5h-7A.5.5.0 017 3.5v-1zM0 12a3 3 0 116 0 3 3 0 01-6 0zm7-1.5a.5.5.0 01.5-.5h7a.5.5.0 01.5.5v1a.5.5.0 01-.5.5h-7a.5.5.0 01-.5-.5v-1zm0-5a.5.5.0 01.5-.5h5a.5.5.0 010 1h-5A.5.5.0 017 5.5zm0 8a.5.5.0 01.5-.5h5a.5.5.0 010 1h-5a.5.5.0 01-.5-.5zM3 1a3 3 0 100 6 3 3 0 000-6zm0 4.5a1.5 1.5.0 110-3 1.5 1.5.0 010 3z">
</path>
</symbol>
</svg>
<header class="navbar navbar-expand-lg navbar-dark bd-navbar sticky-top">
<nav class="container-xxl bd-gutter flex-wrap flex-lg-nowrap" aria-label="Main navigation">
<div class="d-lg-none" style="width: 2.25rem"></div>
<a class="navbar-brand p-0 me-0 me-lg-2" href="/" aria-label="Auto Clicker Auto Fill"><svg
xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<rect fill="#fff" width="32" height="32" rx="2.5" ry="2.5"></rect>
<path fill="#7952b3" fill-rule="evenodd"
d="M22.652 28.078h4.364L17.908 4.01H14.155L5.063 28.078H9.411l1.951-5.6h9.323zM16.023 9.118 19.511 19.1H12.535z">
</path>
</svg></a><button class="navbar-toggler d-flex d-lg-none order-3 p-2" type="button" data-bs-toggle="offcanvas"
data-bs-target="#bdNavbar" aria-controls="bdNavbar" aria-expanded="false" aria-label="Toggle navigation">
<svg class="bi" aria-hidden="true">
<use xlink:href="#three-dots"></use>
</svg>
</button>
<div class="offcanvas-lg offcanvas-end flex-grow-1" id="bdNavbar" aria-labelledby="bdNavbarOffcanvasLabel"
data-bs-scroll="true">
<div class="offcanvas-header px-4 pb-0">
<h5 class="offcanvas-title text-white" id="bdNavbarOffcanvasLabel">Auto Clicker AutoFill</h5>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="offcanvas" aria-label="Close"
data-bs-target="#bdNavbar"></button>
</div>
<div class="offcanvas-body p-4 pt-0 p-lg-0">
<hr class="d-lg-none text-white-50" />
<ul class="navbar-nav flex-row flex-wrap bd-navbar-nav">
<li class="nav-item col-6 col-lg-auto">
<a class="nav-link py-2 px-0 px-lg-2"
href="https://getautoclicker.com/docs/4.x/getting-started/introduction/">Docs</a>
</li>
<li class="nav-item col-6 col-lg-auto">
<a class="nav-link py-2 px-0 px-lg-2"
href="https://github.com/Dhruv-Techapps/auto-clicker-auto-fill/issues">Issues</a>
</li>
<li class="nav-item col-6 col-lg-auto">
<a class="nav-link py-2 px-0 px-lg-2"
href="https://github.com/Dhruv-Techapps/auto-clicker-auto-fill/discussions" target="_blank"
rel="noopener">Discussion</a>
</li>
<li class="nav-item col-6 col-lg-auto">
<a class="nav-link py-2 px-0 px-lg-2" href="https://configs.getautoclicker.com" target="_blank"
rel="noopener">Configs</a>
</li>
<li class="nav-item col-6 col-lg-auto">
<a class="nav-link py-2 px-0 px-lg-2" href="." target="_blank" rel="noopener">Test</a>
</li>
<li class="nav-item col-6 col-lg-auto dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown"
aria-expanded="false">Variant</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="https://stable.getautoclicker.com">Stable</a></li>
<li>
<hr class="dropdown-divider" />
</li>
<li><a class="dropdown-item" href="https://beta.getautoclicker.com">Beta</a></li>
<li>
<hr class="dropdown-divider" />
</li>
<li><a class="dropdown-item" href="https://dev.getautoclicker.com">Dev</a></li>
</ul>
</li>
</ul>
<hr class="d-lg-none text-white-50" />
<ul class="navbar-nav flex-row flex-wrap ms-md-auto">
<li class="nav-item col-6 col-lg-auto"><a class="nav-link py-2 px-0 px-lg-2" aria-label="Youtube"
href="https://www.youtube.com/@autoclickerautofill" target="_blank" rel="noopener"><svg
viewBox="0 0 576 512" width="16" height="16" class="navbar-nav-svg" role="img">
<title>Youtube</title>
<path fill="currentcolor"
d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78.0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"
class=""></path>
</svg>
<small class="d-lg-none ms-2">Youtube</small></a></li>
<li class="nav-item col-6 col-lg-auto"><a class="nav-link py-2 px-0 px-lg-2"
href="https://github.com/Dhruv-Techapps" target="_blank" rel="noopener"><svg width="16" height="16"
class="navbar-nav-svg" viewBox="0 0 512 499.36" role="img">
<title>GitHub</title>
<path fill="currentcolor" fill-rule="evenodd"
d="M256 0C114.64.0.0 114.61.0 256c0 113.09 73.34 209 175.08 242.9 12.8 2.35 17.47-5.56 17.47-12.34.0-6.08-.22-22.18-.35-43.54-71.2 15.49-86.2-34.34-86.2-34.34-11.64-29.57-28.42-37.45-28.42-37.45-23.27-15.84 1.73-15.55 1.73-15.55 25.69 1.81 39.21 26.38 39.21 26.38 22.84 39.12 59.92 27.82 74.5 21.27 2.33-16.54 8.94-27.82 16.25-34.22-56.84-6.43-116.6-28.43-116.6-126.49.0-27.95 10-50.8 26.35-68.69-2.63-6.48-11.42-32.5 2.51-67.75.0.0 21.49-6.88 70.4 26.24a242.65 242.65.0 01128.18.0c48.87-33.13 70.33-26.24 70.33-26.24 14 35.25 5.18 61.27 2.55 67.75 16.41 17.9 26.31 40.75 26.31 68.69.0 98.35-59.85 120-116.88 126.32 9.19 7.9 17.38 23.53 17.38 47.41.0 34.22-.31 61.83-.31 70.23.0 6.85 4.61 14.81 17.6 12.31C438.72 464.97 512 369.08 512 256.02 512 114.62 397.37.0 256 0z">
</path>
</svg>
<small class="d-lg-none ms-2">GitHub</small></a></li>
<li class="nav-item col-6 col-lg-auto"><a class="nav-link py-2 px-0 px-lg-2" aria-label="Google Group"
href="https://groups.google.com/g/auto-clicker-autofill" target="_blank" rel="noopener"><svg width="16"
height="16" class="navbar-nav-svg" role="img" viewBox="0 0 16 16">
<path fill="currentcolor"
d="M0 2a2 2 0 012-2h12a2 2 0 012 2v8a2 2 0 01-2 2H4.414a1 1 0 00-.707.293L.854 15.146A.5.5.0 010 14.793V2zm7.194 2.766a1.688 1.688.0 00-.227-.272 1.467 1.467.0 00-.469-.324l-.008-.004A1.785 1.785.0 005.734 4C4.776 4 4 4.746 4 5.667c0 .92.776 1.666 1.734 1.666.343.0.662-.095.931-.26-.137.389-.39.804-.81 1.22a.405.405.0 00.011.59c.173.16.447.155.614-.01 1.334-1.329 1.37-2.758.941-3.706a2.461 2.461.0 00-.227-.4zM11 7.073c-.136.389-.39.804-.81 1.22a.405.405.0 00.012.59c.172.16.446.155.613-.01 1.334-1.329 1.37-2.758.942-3.706a2.466 2.466.0 00-.228-.4 1.686 1.686.0 00-.227-.273 1.466 1.466.0 00-.469-.324l-.008-.004A1.785 1.785.0 0010.07 4c-.957.0-1.734.746-1.734 1.667.0.92.777 1.666 1.734 1.666.343.0.662-.095.931-.26z">
</path>
</svg>
<small class="d-lg-none ms-2">Google Group</small></a></li>
<li class="nav-item col-6 col-lg-auto"><a class="nav-link py-2 px-0 px-lg-2"
href="https://twitter.com/dharmeshhemaram" target="_blank" rel="noopener"><svg width="16" height="16"
class="navbar-nav-svg" viewBox="0 0 512 416.32" role="img">
<title>Twitter</title>
<path fill="currentcolor"
d="M160.83 416.32c193.2.0 298.92-160.22 298.92-298.92.0-4.51.0-9-.2-13.52A214 214 0 00512 49.38a212.93 212.93.0 01-60.44 16.6 105.7 105.7.0 0046.3-58.19 209 209 0 01-66.79 25.37 105.09 105.09.0 00-181.73 71.91 116.12 116.12.0 002.66 24c-87.28-4.3-164.73-46.3-216.56-109.82A105.48 105.48.0 0068 159.6a106.27 106.27.0 01-47.53-13.11v1.43a105.28 105.28.0 0084.21 103.06 105.67 105.67.0 01-47.33 1.84 105.06 105.06.0 0098.14 72.94A210.72 210.72.0 0125 370.84a202.17 202.17.0 01-25-1.43 298.85 298.85.0 00160.83 46.92">
</path>
</svg>
<small class="d-lg-none ms-2">Twitter</small></a></li>
<li class="nav-item col-6 col-lg-auto"><a class="nav-link py-2 px-0 px-lg-2"
href="https://opencollective.com/auto-clicker-autofill" target="_blank" rel="noopener"><svg width="16"
height="16" fill="currentcolor" fill-rule="evenodd" class="navbar-nav-svg" viewBox="0 0 40 41"
role="img">
<title>Open Collective</title>
<path fill-opacity=".4"
d="M32.8 21c0 2.4-.8 4.9-2 6.9l5.1 5.1c2.5-3.4 4.1-7.6 4.1-12 0-4.6-1.6-8.8-4-12.2L30.7 14c1.2 2 2 4.3 2 7z">
</path>
<path
d="M20 33.7a12.8 12.8.0 010-25.6c2.6.0 5 .7 7 2.1L32 5a20 20 0 10.1 31.9l-5-5.2a13 13 0 01-7 2z">
</path>
</svg>
<small class="d-lg-none ms-2">Open Collective</small></a></li>
<li class="nav-item col-6 col-lg-auto"><a class="nav-link py-2 px-0 px-lg-2" aria-label="Discord"
href="https://discord.gg/ubMBeX3" target="_blank" rel="noopener"><svg width="16" height="16"
class="navbar-nav-svg" role="img" viewBox="0 0 448 512">
<title>Discord</title>
<path fill="currentcolor"
d="M297.216 243.2c0 15.616-11.52 28.416-26.112 28.416-14.336.0-26.112-12.8-26.112-28.416s11.52-28.416 26.112-28.416 26.112 12.8 26.112 28.416zm-119.552-28.416c-14.592.0-26.112 12.8-26.112 28.416s11.776 28.416 26.112 28.416c14.592.0 26.112-12.8 26.112-28.416.256-15.616-11.52-28.416-26.112-28.416zM448 52.736V512c-64.494-56.994-43.868-38.128-118.784-107.776l13.568 47.36H52.48C23.552 451.584.0 428.032.0 398.848V52.736C0 23.552 23.552.0 52.48.0h343.04C424.448.0 448 23.552 448 52.736zm-72.96 242.688c0-82.432-36.864-149.248-36.864-149.248-36.864-27.648-71.936-26.88-71.936-26.88l-3.584 4.096c43.52 13.312 63.744 32.512 63.744 32.512-60.811-33.329-132.244-33.335-191.232-7.424-9.472 4.352-15.104 7.424-15.104 7.424s21.248-20.224 67.328-33.536l-2.56-3.072s-35.072-.768-71.936 26.88c0 0-36.864 66.816-36.864 149.248.0.0 21.504 37.12 78.08 38.912.0.0 9.472-11.52 17.152-21.248-32.512-9.728-44.8-30.208-44.8-30.208 3.766 2.636 9.976 6.053 10.496 6.4 43.21 24.198 104.588 32.126 159.744 8.96 8.96-3.328 18.944-8.192 29.44-15.104.0.0-12.8 20.992-46.336 30.464 7.68 9.728 16.896 20.736 16.896 20.736 56.576-1.792 78.336-38.912 78.336-38.912z"
class=""></path>
</svg>
<small class="d-lg-none ms-2">Discord</small></a></li>
<li class="nav-item py-2 py-lg-1 col-12 col-lg-auto">
<div class="vr d-none d-lg-flex h-100 mx-lg-2 text-white"></div>
<hr class="d-lg-none my-2 text-white-50">
</li>
<li class="nav-item dropdown"><button
class="btn btn-link nav-link px-0 px-lg-2 py-2 dropdown-toggle d-flex align-items-center" id="bd-theme"
type="button" aria-expanded="false" data-bs-toggle="dropdown" data-bs-display="static"
aria-label="Toggle theme (light)">
<svg class="bi my-1 theme-icon-active">
<use href="#sun-fill"></use>
</svg>
<span class="d-lg-none ms-2" id="bd-theme-text">Toggle theme</span></button>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="bd-theme-text">
<li><button type="button" class="dropdown-item d-flex align-items-center active"
data-bs-theme-value="light" aria-pressed="true">
<svg class="bi me-2 opacity-50">
<use href="#sun-fill"></use>
</svg>
Light<svg class="bi ms-auto d-none">
<use href="#check2"></use>
</svg></button></li>
<li><button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="dark"
aria-pressed="false">
<svg class="bi me-2 opacity-50">
<use href="#moon-stars-fill"></use>
</svg>
Dark<svg class="bi ms-auto d-none">
<use href="#check2"></use>
</svg></button></li>
<li><button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="auto"
aria-pressed="false">
<svg class="bi me-2 opacity-50">
<use href="#circle-half"></use>
</svg>
Auto<svg class="bi ms-auto d-none">
<use href="#check2"></use>
</svg></button></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="container-fluid ">
<h1 class="bd-title">Practice form</h1>
<p>
This is a sample web form to help you practice creating auto click / auto fill rules for all the different types
of form fields that supports. You can identify the field to automatically fill
by entering a supported xpath value into the xpath column.
</p>
<h2 class="bd-content-title">Basic XPath</h2>
<form name="form" class="form-inline">
<table class="table sm">
<thead>
<tr>
<th scope="col">Form Field</th>
<th scope="col">HTML</th>
<th scope="col">XPath</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input type="text" class="form-control ml-2" placeholder="full name" autofocus="" />
</td>
<td>
<pre class="language-html"><code><input type="text" /></code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@type="text"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<input type="text" class="form-control ml-2" name="username" placeholder="username" />
</td>
<td>
<pre class="language-html"><code><input name="username"/></code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@name="username"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<input type="text" class="form-control ml-2" placeholder="First name" />
</td>
<td>
<pre class="language-html"><code><input placeholder="First name"/></code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@placeholder="First name"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<input type="text" class="form-control ml-2" id="last-name" placeholder="last name" />
</td>
<td>
<pre class="language-html"><code><input id="last-name"/></code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@id="last-name"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<input type="text" class="form-control ml-2" aria-describedby="name" />
</td>
<td>
<pre class="language-html"><code><input aria-describedby="name"/></code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@aria-describedby="name"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<input type="text" class="form-control ml-2" readonly />
</td>
<td>
<pre class="language-html"><code><input readonly/></code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@readonly]</li>
</ul>
</td>
</tr>
<tr>
<td>
<input type="text" class="form-control ml-2" disabled />
</td>
<td>
<pre class="language-html"><code><input disabled/></code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@disabled]</li>
</ul>
</td>
</tr>
<tr>
<td>
<input type="email" class="form-control ml-2" placeholder="email" />
</td>
<td>
<pre class="language-html"><code><input type="email"/></code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@type="email"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<input type="password" class="form-control ml-2" autocomplete />
</td>
<td>
<pre class="language-html"><code><input type="password"/></code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@type="password"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<a href="#" target="_blank">link</a>
</td>
<td>
<pre class="language-html"><code><a href="#" target="_blank">link</a></code></pre>
</td>
<td>
<ul class="xpath">
<li>//a[@href]</li>
<li>//a[@href="#"]</li>
<li>//a[@target="_blank"]</li>
<li>//a[text()="link"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<input type="radio" name="gender" value="male" checked /> Male<br />
<input type="radio" name="gender" value="female" /> Female<br />
<input type="radio" name="gender" value="other" /> Other
</td>
<td>
<pre class="language-html"><code><input type="radio" name="gender" value="male" checked> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other</code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@type="radio"]</li>
<li>//input[@name="gender"]</li>
<li>//input[@value="other"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<select id="product-size" class="form-select">
<option>size</option>
<option data-value-class="opt-35" data-value-size="35" value="opt-35item-0">35</option>
<option data-value-class="opt-36" data-value-size="36" value="opt-36item-1">36</option>
<option data-value-class="opt-37" data-value-size="37" value="opt-37item-2">37</option>
<option data-value-class="opt-38" data-value-size="38" value="opt-38item-3">38</option>
<option data-value-class="opt-39" data-value-size="39" value="opt-39item-4">39</option>
<option data-value-class="opt-40" data-value-size="40" value="opt-40item-5">40</option>
</select>
</td>
<td>
<pre class="language-html"><code><select id="product-size">
<option>size</option>
<option class="opt-35" size="35" value="opt-35item-0">35</option>
<option class="opt-36" size="36" value="opt-36item-1">36</option>
<option class="opt-37" size="37" value="opt-37item-2">37</option>
<option class="opt-38" size="38" value="opt-38item-3">38</option>
<option class="opt-39" size="39" value="opt-39item-4">39</option>
<option class="opt-40" size="40" value="opt-40item-5">40</option>
</select></code></pre>
</td>
<td>
<ul class="xpath">
<li>//select[@id="product-size"]/option[2]</li>
<li>//select[@id="product-size"]/option[@size="36"]</li>
<li>//select[@id="product-size"]/option[contains(@value,"opt-40")]</li>
<li>//select[@id="product-size"]/option[text()="39"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<select name="cars" class="form-select">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select>
</td>
<td>
<pre class="language-html"><code><select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select></code></pre>
</td>
<td>
<ul class="xpath">
<li>//select[@name="cars"]</li>
</ul>
<kbd>values</kbd>
<ul class="xpath">
<li>volvo</li>
<li>saab</li>
<li>fiat</li>
<li>audi</li>
</ul>
</td>
</tr>
<tr>
<td>
<textarea name="message" rows="3" cols="30">The cat was playing in the garden.</textarea>
</td>
<td>
<pre class="language-html"><code><textarea name="message" rows="3" cols="30">
The cat was playing in the garden.
</textarea></code></pre>
</td>
<td>
<ul class="xpath">
<li>//textarea[@name="message"]</li>
<li>//textarea[@rows="3"]</li>
<li>//textarea[@cols="30"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<input type="submit" value="Submit" class="btn btn-primary" />
</td>
<td>
<pre class="language-html"><code><input type="submit" value="Submit"></code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@type="submit"]</li>
<li>//input[@value="Submit"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="vehicle1" value="Bike" /> I have a bike<br />
<input type="checkbox" name="vehicle2" value="Car" /> I have a car<br />
<input type="checkbox" name="vehicle3" value="Boat" checked /> I have a boat<br />
</td>
<td>
<pre class="language-html"><code><input type="checkbox" name="vehicle1" value="Bike"> I have a bike
<input type="checkbox" name="vehicle2" value="Car"> I have a car
<input type="checkbox" name="vehicle3" value="Boat" checked> I have a boat</code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@type="checkbox"]</li>
<li>//input[@name="vehicle2"]</li>
<li>//input[@value="Car"]</li>
<li>//input[@checked]</li>
</ul>
</td>
</tr>
<tr>
<td>
<button type="button" class="btn btn-success" alert onclick="alert('Hello World!')">Click Me!
(Alert)</button>
</td>
<td>
<pre
class="language-html"><code><button type="button" alert onclick="alert('Hello World!')">Click Me!</button></code></pre>
</td>
<td>
<ul class="xpath">
<li>//button[@type="button"]</li>
<li>//button[@alert]</li>
<li>//button[@onclick]</li>
</ul>
</td>
</tr>
<tr>
<td>
<button type="button" class="btn btn-danger" console
onclick="javascript:console.log('Hello World!')">Click Me! (Console Hello World)</button>
</td>
<td>
<pre
class="language-html"><code><button type="button" console onclick="console.log('Hello World!')">Click Me!</button></code></pre>
</td>
<td>
<ul class="xpath">
<li>//button[@type="button"]</li>
<li>//button[@console]</li>
<li>//button[@onclick]</li>
</ul>
</td>
</tr>
<tr>
<td>
<button type="button" class="btn btn-warning" random
onclick="javascript:console.log(Math.floor(Math.random() * 100))">Click Me! (Console Random)</button>
</td>
<td>
<pre
class="language-html"><code><button type="button" random onclick="console.log('Random integer from 0 to 99 ')">Click Me!</button></code></pre>
</td>
<td>
<ul class="xpath">
<li>//button[@type="button"]</li>
<li>//button[@random]</li>
<li>//button[@onclick]</li>
</ul>
</td>
</tr>
</tbody>
</table>
</form>
<h2>Advance XPath</h2>
<h3>Contains()</h3>
<form name="form">
<table class="table sm">
<thead>
<tr>
<th scope="col">Element</th>
<th scope="col">HTML</th>
<th scope="col">XPath</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input type="submit" class="btn btn-success" />
</td>
<td>
<pre class="language-html"><code><input type="submit" /></code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[contains(@type,"submit")]</li>
<li>//input[contains(@type,"sub")]</li>
<li>//*[contains(@type,"mit")]</li>
</ul>
</td>
</tr>
<tr>
<td>
<button type="button" class="btn btn-primary" name="btnLogin">Login</button>
</td>
<td>
<pre class="language-html"><code><button type="button" name="btnLogin">Login</button></code></pre>
</td>
<td>
<ul class="xpath">
<li>//button[contains(@name,"btn")]</li>
<li>//button[contains(text(),"Log")]</li>
<li>//*[contains(@type,"button")]</li>
</ul>
</td>
</tr>
<tr>
<td>
<div class="mb-3">
<label for="address">Address</label>
<input type="text" class="form-control is-invalid" id="address" placeholder="1234 Main St"
required="" />
<div class="invalid-feedback">Please enter your shipping address.</div>
</div>
</td>
<td>
<pre class="language-html"><code><label for="address">Address</label>
<input type="text" class="form-control is-invalid" id="address">
<div class="invalid-feedback">
Please enter your shipping address.
</div></code></pre>
</td>
<td>
<kbd>label</kbd>
<ul class="xpath">
<li>//label[@for="address"]</li>
<li>//label[contains(text(),"Address")]</li>
</ul>
<kbd>div</kbd>
<ul class="xpath">
<li>//*[@class="invalid-feedback"]</li>
<li>//div[contains(@class,"invalid")]</li>
</ul>
</td>
</tr>
<tr>
<td>
<button type="button" class="btn btn-primary mb-3">Primary</button>
<button type="button" class="btn btn-secondary mb-3">Secondary</button>
<button type="button" class="btn btn-success mb-3">Success</button>
<button type="button" class="btn btn-danger mb-3">Danger</button>
<button type="button" class="btn btn-warning mb-3">Warning</button>
<button type="button" class="btn btn-info mb-3">Info</button>
<button type="button" class="btn btn-light mb-3">Light</button>
<button type="button" class="btn btn-dark mb-3">Dark</button>
</td>
<td>
<pre class="language-html"><code><button type="button" class="btn-primary">Primary</button>
<button type="button" class="btn-secondary">Secondary</button>
<button type="button" class="btn-success">Success</button>
<button type="button" class="btn-danger">Danger</button>
<button type="button" class="btn-warning">Warning</button>
<button type="button" class="btn-info">Info</button>
<button type="button" class="btn-light">Light</button>
<button type="button" class="btn-dark">Dark</button></code></pre>
</td>
<td>
<kbd>Select All</kbd>
<ul class="xpath">
<li>//button</li>
<li>//button[@type="button"]</li>
<li>//*[contains(@class,"btn-")]</li>
</ul>
</td>
</tr>
</tbody>
</table>
</form>
<h3>Using OR & AND</h3>
<table class="table sm">
<thead>
<tr>
<th scope="col">Element</th>
<th scope="col">HTML</th>
<th scope="col">XPath</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<form class="form-signin">
<label for="inputEmail" class="sr-only">Email address</label>
<input type="email" id="inputEmail" class="form-control" placeholder="Email address" required="" />
<label for="inputPassword" class="sr-only">Password</label>
<input type="password" id="inputPassword" class="form-control" placeholder="Password" required=""
autocomplete />
</form>
</td>
<td>
<pre class="language-html"><code><form class="form-signin">
<label for="inputEmail">Email address</label>
<input type="email" id="inputEmail" placeholder="Email address" >
<label for="inputPassword">Password</label>
<input type="password" id="inputPassword" placeholder="Password" >
</form></code></pre>
</td>
<td>
<ul class="xpath">
<li>//form/input[@type="email" or @type="password"]</li>
<li>//form/input[@type="email" and @id="inputEmail"]</li>
<li>//form/input[@type="email" and @id]</li>
<li>//form[@class="form-signin"]/input[@id="inputPassword"]</li>
<li>//form[@class="form-signin"]/input[1]</li>
<li>//form[@class="form-signin"]/input[2]</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h3>starts-with(@attribute,value)</h3>
<table class="table sm">
<thead>
<tr>
<th scope="col">Element</th>
<th scope="col">HTML</th>
<th scope="col">XPath</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<button type="button" class="btn btn-primary mb-3">Primary</button>
<button type="button" class="btn btn-secondary mb-3">Secondary</button>
<button type="button" class="btn btn-success mb-3">Success</button>
<button type="button" class="btn btn-danger mb-3">Danger</button>
<button type="button" class="btn btn-warning mb-3">Warning</button>
<button type="button" class="btn btn-info mb-3">Info</button>
<button type="button" class="btn btn-light mb-3">Light</button>
<button type="button" class="btn btn-dark mb-3">Dark</button>
</td>
<td>
<pre class="language-html"><code><button type="button" class="btn-primary">Primary</button>
<button type="button" class="btn-secondary">Secondary</button>
<button type="button" class="btn-success">Success</button>
<button type="button" class="btn-danger">Danger</button>
<button type="button" class="btn-warning">Warning</button>
<button type="button" class="btn-info">Info</button>
<button type="button" class="btn-light">Light</button>
<button type="button" class="btn-dark">Dark</button></code></pre>
</td>
<td>
<ul class="xpath">
<li>//button[starts-with(@class,"btn")]</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h3>Events</h3>
<table class="table sm">
<thead>
<tr>
<th scope="col" width="40%">Element</th>
<th scope="col">HTML</th>
<th scope="col">XPath</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<button type="button" class="btn btn-primary mb-3" id="click-events-test">Click Events</button>
</td>
<td>
<pre class="language-html"><code><button id="ClickEvents">Click Events</button></code></pre>
</td>
<td>
<ul class="xpath">
<li>//button[@id="click-events-test"]</li>
</ul>
</td>
</tr>
<tr>
<td>
<form onsubmit="javasciprt:alert('submitted');">
<input type="text" id="form-events-test" class="form-control" placeholder="Form Events Test" />
</form>
</td>
<td>
<pre
class="language-html"><code><input type="text" id="FormEvents" class="form-control" placeholder="Form Events Test" /></code></pre>
</td>
<td>
<ul class="xpath">
<li>//input[@id="form-events-test"]</li>
<li>//tagname[@attribute="value"]</li>
</ul>
</td>
</tr>
</tbody>
</table>
<h3>Random Number</h3>
<div class="d-flex justify-content-center align-items-center flex-column mb-3 border rounded p-3">
<h6>M.R.P.: ₹ <span id="mrp">850.00</span></h6>
<h6>Price: ₹ <span id="price">549.00</span></h6>
<h6>You Save: ₹ <span id="save">301.00</span></h6>
<h6 id="data-format">13-Feb-2023 [00:06:36]</h6>
<h6 id="currency-format">$12,000.00</h6>
<script>
const mrp = Math.floor(Math.random() * 100) + 1
const save = Math.floor(Math.random() * (mrp > 25 ? 25 : mrp)) + 1
document.getElementById('mrp').innerHTML = mrp
document.getElementById('save').innerHTML = save
document.getElementById('price').innerHTML = mrp - save
</script>
</div>
<h3>Speed Test</h3>
<div class="d-flex justify-content-center mb-3">
<button class="btn btn-lg border" id="speed-test">
CLICK ME
<span class="badge bg-warning text-dark ml-5">0</span>
</button>
</div>
<h3>
Inline script
</h3>
<a href="JavaScript:onClick=alert('inline clicked')" id="inline-script">inline link</a>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
<script src="./assets/prism/prism.js"></script>
<script src="./assets/scripts/xpath-formatter.js"></script>
<script src="./assets/scripts/speed-test.js"></script>
</body>
</html>