-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1509 lines (1328 loc) · 97.8 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Automateum</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Freehand">
<link href="css/vendors/aos.css" rel="stylesheet">
<link rel="stylesheet" href="css/vendors/swiper-bundle.min.css">
<link href="style.css" rel="stylesheet">
<link href="custom.css" rel="stylesheet">
</head>
<body class="cb4io c6rli cvh96 cwvl1 cy6el">
<!-- Page wrapper -->
<div class="cmk6n cvovy ct22v cim3e">
<!-- Site header -->
<header class="cid6d cb2cq c9nuw">
<div class="c8scd c9ud7 c2jnb czfl2">
<div class="cligg cfgg9 cm4uj cim3e c3zlm">
<!-- Site branding -->
<div class="coapw cuee4">
<!-- Logo -->
<a class="c8ydg" href="index-2.html" aria-label="Cruip">
<svg width="30" height="30" xmlns="http://www.w3.org/2000/svg">
<g fill-rule="nonzero" fill="none">
<g class="cbdm0" transform="translate(3 3)">
<circle cx="5" cy="5" r="5"></circle>
<circle cx="19" cy="5" r="5"></circle>
<circle cx="5" cy="19" r="5"></circle>
<circle cx="19" cy="19" r="5"></circle>
</g>
<g class="crh8z">
<circle cx="15" cy="5" r="5"></circle>
<circle cx="25" cy="15" r="5"></circle>
<circle cx="15" cy="25" r="5"></circle>
<circle cx="5" cy="15" r="5"></circle>
</g>
</g>
</svg>
</a>
</div>
<!-- Desktop navigation -->
<nav class="cim3e c5aqs">
<!-- Desktop sign in links -->
<ul class="cfgg9 c96lt c7qmx cim3e c5aqs">
<li class="csb8s">
<a target="_top" class="c3jy2 cz75y cfgg9 c2u4q c2a4l c5bld ck941 cik6c"
href="https://uat-prepaid.m2pfintech.com/pp-automation-app/signin">
Login
<span class="c9b1l cba20 cwp06 cjidz cyswi chi9x ce0e5">
<svg class="cdbva" width="12" height="10" xmlns="http://www.w3.org/2000/svg">
<path
d="M1 6.002h7.586L6.293 8.295a1 1 0 1 0 1.414 1.414l4-4a1 1 0 0 0 0-1.416l-4-4a1 1 0 0 0-1.414 1.416l2.293 2.293H1a1 1 0 1 0 0 2Z">
</path>
</svg>
</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- Page content -->
<main class="c5aqs">
<!-- Hero -->
<section class="cxd6l">
<!-- Bg -->
<div class="cba2f cuauo c04qg c8f6c ch087 cid6d c1zfc co4if cibre cp1ak" aria-hidden="true"></div>
<div class="c8scd c9ud7 c2jnb czfl2">
<div class="c1ooy chh1r cutc6">
<!-- Hero content -->
<div class="cuwit cbkrz c5avi cxd6l c2hw8 c2jnb">
<!-- Content -->
<div class="cq7yy">
<!-- Copy -->
<h1 class="cr4vv c82gj cjz1t" data-aos="fade-up" data-aos-delay="100"
style="line-height: 1.2">Keyword & Data Driven Automation Framework for your <span
class="cjtob cfgg9 c2a4l cxd6l">
<svg class="cid6d cibre" width="246" height="76"
xmlns="http://www.w3.org/2000/svg">
<path
d="M55.224 10.087c-13.986 3.38-25.552 7.614-33.97 12.438-4.171 2.412-7.508 4.953-9.953 7.58-2.395 2.628-3.807 5.332-4.21 8.058-.266 1.99.075 3.985 1.02 5.955.922 1.973 2.37 3.919 4.327 5.819 7.028 6.749 20.696 12.657 39.108 16.904 18.475 4.28 40.791 6.693 63.89 6.91 20.527.186 40.83-1.353 58.737-4.452 11.396-1.964 21.73-4.463 30.631-7.407 8.905-2.941 16.508-6.232 22.611-9.788 3.663-2.222 4.978-1.73 3.59.491-1.13 1.509-2.83 2.971-5.067 4.357-3.235 1.976-7.254 3.82-11.962 5.49-4.686 1.628-9.745 3.15-15.139 4.553a273.749 273.749 0 0 1-17.309 3.752 339.58 339.58 0 0 1-19.111 2.822c-3.367.35-6.676.738-10.087 1.025-3.412.286-6.868.546-10.339.75-13.955.815-28.266.87-42.283.165-13.996-.735-27.452-2.236-39.729-4.435-14.867-2.672-27.78-6.263-37.927-10.548-10.21-4.343-17.115-9.34-20.204-14.618C.15 43.028-.38 40.095.268 37.176c.295-1.462.868-2.917 1.713-4.357.883-1.432 2.027-2.847 3.427-4.239 2.819-2.783 6.622-5.463 11.342-7.99 4.626-2.528 10.101-4.9 16.335-7.074C48.423 8.116 68.15 4.072 90.24 1.802A371.99 371.99 0 0 1 115.924.135c54.806-1.437 105.87 8.691 124.34 24.662 1.911 1.728 3.392 3.498 4.431 5.295 1.352 2.388 1.655 4.82.901 7.234-.223 1.092-1.189 2.158-2.836 3.127-.493.309-1.076.603-1.742.88-.916.272-1.27-.27-1.344-1.462-.074-1.193 0-3.05-.429-5.409-.722-3.525-3.213-6.994-7.384-10.284-4.32-3.334-10.299-6.44-17.723-9.206-7.488-2.813-16.364-5.247-26.304-7.211-9.952-1.996-20.87-3.493-32.344-4.434-17.147-1.405-35.144-1.505-52.444-.292-8.673.62-17.094 1.537-25.108 2.732-7.997 1.207-15.556 2.672-22.552 4.37l-.162-.05Z"
fill="#2DD4BF" fill-rule="nonzero"></path>
</svg>
business
</span></h1>
<p class="c6rdy cshfb czx4s" data-aos="fade-up" data-aos-delay="200">Create End2End
Automation Scripts for your entire web-application or business.
<br />
</p>
<!-- Buttons -->
<div class="cwf1t cszlx c7jfw ch1on c1v83 ch1v7 cs5eq c3qtg c1zfc c2jnb cz8g9"
data-aos="fade-up" data-aos-delay="300">
<div>
<a target="_top" class="c3jy2 cz75y cfgg9 c2u4q c2a4l c5bld ck941 cb2cq cik6c"
href="https://uat-prepaid.m2pfintech.com/pp-automation-app/register">
Get Free Trial Now
<span class="c9b1l cba20 cwp06 cjidz cyswi chi9x ce0e5">
<svg class="cdbva" width="12" height="10"
xmlns="http://www.w3.org/2000/svg">
<path
d="M1 6.002h7.586L6.293 8.295a1 1 0 1 0 1.414 1.414l4-4a1 1 0 0 0 0-1.416l-4-4a1 1 0 0 0-1.414 1.416l2.293 2.293H1a1 1 0 1 0 0 2Z">
</path>
</svg>
</span>
</a>
</div>
<div>
<a class="c6loh ceobg cd766 cxysy c04qg cadb5 clo95 c6fab cyr0b cfgg9 c2a4l cr4vv c5bld cxd6l ck941 cb2cq"
href="support.html">Read documentation</a>
</div>
</div>
</div>
<!-- Image -->
<div class="c8vta cuwit cc9uu ce3bm cekqk cf1ub c1zfc c2jnb c13yo">
<div class="cxd6l ceclw cpqb6 cms8r">
<img loading="lazy"
class="cuauo c94ys c902r ceggv ci7pi cpkfa cid6d czhmi cup7d cibre c6y86"
src="images/hero-illustration.svg" width="960" height="960" aria-hidden="true">
<lottie-player src="https://assets1.lottiefiles.com/packages/lf20_kUtZCR7Zyk.json"
background="transparent" speed="1" loop autoplay class="cuwit"
style="border-radius: 8px; margin-top:70px;" data-aos="fade-up"></lottie-player>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section #1 -->
<section>
<div class="c8scd c9ud7 c2jnb czfl2">
<div class="c1hks chh1r c17pb">
<!-- Items -->
<div class="cpvc3 cuwit cu4zi chitm clj8j cf1ub c2jnb csyq7 cz17u">
<!-- 1st item -->
<div class="cotx2 c9rfx ckjl3 cdjn1 c34lp cmhky cyx82 cwwxq cf208 cilu6 cxd6l c8zdl"
data-aos="fade-up">
<div class="cq1sm">
<svg width="56" height="56" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="a">
<stop stop-color="#2563EB" offset="0%"></stop>
<stop stop-color="#3B82F6" offset="100%"></stop>
</linearGradient>
</defs>
<g fill-rule="nonzero" fill="none">
<path
d="M43.443 49.745a1.028 1.028 0 0 1-.262-.019l-23.5-4.9a1 1 0 0 1-.775-1.186l6.2-29.352a1.006 1.006 0 0 1 1.182-.773l23.42 4.885a1 1 0 0 1 .776 1.183l-6.12 29.37a1 1 0 0 1-.921.795v-.003Z"
fill="#7DD3FC"></path>
<path
d="M25 32H1a1 1 0 0 1-1-1V1a1 1 0 0 1 1-1h24a1 1 0 0 1 1 1v30a1 1 0 0 1-1 1ZM8 15.25l3.5 4 6.5-6.5-1-.75-5.5 4.25-2.5-2-1 1Z"
fill="url(#a)" style="mix-blend-mode:multiply"
transform="translate(6 6)"></path>
</g>
</svg>
</div>
<h4 class="c8dbe cn6zh cynqs">Create Test Case</h4>
<p class="c23lu">Test Case is place where the actual magic happens and where your actual
script will be executed.</p>
</div>
<!-- 2nd item -->
<div class="cotx2 c9rfx ckjl3 cdjn1 c34lp cmhky cyx82 cwwxq cf208 cilu6 cxd6l c8zdl"
data-aos="fade-up" data-aos-delay="100">
<div class="cq1sm">
<svg width="56" height="56" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="a">
<stop stop-color="#2563EB" offset="0%"></stop>
<stop stop-color="#3B82F6" offset="100%"></stop>
</linearGradient>
</defs>
<g fill-rule="nonzero" fill="none">
<path
d="m19.93 36.705-9.769-20.03c-.208-.426.026-.966.523-1.209L39.446 1.438c.497-.242 1.066-.094 1.274.332l9.77 20.03c.207.427-.026.967-.523 1.21L21.205 37.036c-.497.243-1.067.094-1.274-.332Zm2.395-22.466-7.19 3.507.876 1.798 7.19-3.507-.876-1.798Z"
fill="#7DD3FC"></path>
<path
d="M32 46V12h5.143c.474 0 .857.447.857 1v32c0 .553-.383 1-.857 1H32Zm-2 0H14.857c-.474 0-.857-.447-.857-1V13c0-.553.383-1 .857-1H30v34ZM18 34v8h2v-8h-2Z"
fill="url(#a)" style="mix-blend-mode:multiply"
transform="rotate(64 19.372 32.782)"></path>
</g>
</svg>
</div>
<h4 class="c8dbe cn6zh cynqs">Create Process</h4>
<p class="c23lu">The first unit of a Test Case is a Process. It can be of two types i.e.
a Test Case related process or Reusable Process.</p>
</div>
<!-- 3rd item -->
<div class="cotx2 c9rfx ckjl3 cdjn1 c34lp cmhky cyx82 cwwxq cf208 cilu6 cxd6l c8zdl"
data-aos="fade-up" data-aos-delay="200">
<div class="cq1sm">
<svg width="56" height="56" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient x1="50%" y1="100%" x2="50%" y2="0%" id="a">
<stop stop-color="#2563EB" offset="0%"></stop>
<stop stop-color="#3B82F6" offset="100%"></stop>
</linearGradient>
</defs>
<g fill-rule="nonzero" fill="none">
<path
d="M30.22 38.065h-26a1 1 0 0 1-1-1v-32a1 1 0 0 1 1-1h26a1 1 0 0 1 1 1v32a1 1 0 0 1-1 1Zm-19-24v2h7v-2h-7Zm3 6v2h10v-2h-10Zm-3 6v2h7v-2h-7Z"
fill="#7DD3FC"></path>
<path
d="m51.585 50.536-25.984.907a1 1 0 0 1-1.034-.964l-1.117-31.98a1 1 0 0 1 .965-1.035l25.984-.907a1 1 0 0 1 1.034.964l1.117 31.98a1 1 0 0 1-.965 1.035ZM40.337 38.061l3.832-4.11a.843.843 0 0 0-.042-1.192l-4.11-3.833-1.15 1.235 3.492 3.256-3.257 3.493 1.235 1.15Zm-4.97.173L36.518 37l-3.492-3.257 3.256-3.492-1.234-1.151-3.832 4.11a.843.843 0 0 0 .041 1.192l4.11 3.832Z"
fill="url(#a)" style="mix-blend-mode:multiply"></path>
</g>
</svg>
</div>
<h4 class="c8dbe cn6zh cynqs">Create Test Steps</h4>
<p class="c23lu">Test Step is the detailed instruction what to do at that particular
time. There are over 100 Action-Keywords supported in Test Step.</p>
</div>
</div>
</div>
</div>
</section>
<section data-aos-id-2="">
<div class="c76mj cxd6l c2jnb">
<!-- Bg -->
<div class="cjtga cuauo c2u4q cid6d c1zfc co4if cibre ct2lc" aria-hidden="true"></div>
<div class="c8scd c9ud7 c2jnb czfl2">
<div class="cenys clk7y">
<!-- Section content -->
<div class="cuwit cbkrz c5avi cxd6l c2hw8 c2jnb">
<!-- Content -->
<div class="cdyv1">
<!-- Copy -->
<h2 class="cr4vv caahj ct4y7" data-aos="fade-up" data-aos-anchor="[data-aos-id-2]"
data-aos-delay="100" style="line-height: 1.2"> Build an Automated Test Case that
your business needs.</h2>
<p class="cuao9 cshfb czx4s" data-aos="fade-up" data-aos-anchor="[data-aos-id-2]"
data-aos-delay="200">Let this software do all the time consuming work within
minutes and without any interruptions while you sit back and enjoy the life.</p>
<!-- Button -->
<div class="c7jfw cs5eq c2jnb czx4s" data-aos="fade-up"
data-aos-anchor="[data-aos-id-2]" data-aos-delay="300">
<div>
<a target="_top" target="_top"
class="c4kx2 cfgg9 c0bsy c2a4l c0kfj c5bld ck941 cik6c"
href="https://uat-prepaid.m2pfintech.com/pp-automation-app/register">
Get Free Trial Now
<span class="c9b1l cba20 cwp06 c962e cyswi chi9x ce0e5">
<svg class="cdbva" width="12" height="10"
xmlns="http://www.w3.org/2000/svg">
<path
d="M1 6.002h7.586L6.293 8.295a1 1 0 1 0 1.414 1.414l4-4a1 1 0 0 0 0-1.416l-4-4a1 1 0 0 0-1.414 1.416l2.293 2.293H1a1 1 0 1 0 0 2Z">
</path>
</svg>
</span>
</a>
</div>
</div>
</div>
<!-- Image -->
<div class="cfw4g cc9uu cekqk cr15q c1zfc c13yo cdsnr">
<div class="cxd6l ceclw co107">
<img loading="lazy"
class="cuauo c94ys c902r ceggv ci7pi cpkfa cid6d czhmi cup7d cibre c6y86"
src="images/cards-illustration.svg" width="742" height="742"
aria-hidden="true">
<div data-aos="fade-up" data-aos-anchor="[data-aos-id-2]"
style="margin-top:-150px; margin-left:150px">
<lottie-player
src="https://assets6.lottiefiles.com/packages/lf20_0kekCq5JRH.json"
background="transparent" speed="1" style="width: 500px;" loop
autoplay></lottie-player>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section #3 -->
<section class="c64wh c925q" data-aos-id-3="">
<div class="c76mj cxd6l c2jnb">
<!-- Bg -->
<div class="cwzbd cuauo cx1p1 cypmz cid6d c1zfc co4if cibre ct2lc" aria-hidden="true"></div>
<div class="c8scd c9ud7 c2jnb czfl2">
<div class="cwoc4 clk7y c2spt">
<!-- Section content -->
<div class="cuwit cbkrz cfgg9 chyyp c96lt c5avi cxd6l c2hw8 ct22v c2jnb cim3e">
<!-- Content -->
<div class="c7u37 cnbue ccan0 coapw">
<!-- Copy -->
<h2 class="caahj ct4y7" data-aos="fade-up" data-aos-anchor="[data-aos-id-3]"
data-aos-delay="100" style="line-height: 1.2">End2End test your application and
never loose any Bug.</h2>
<p class="c23lu cshfb czx4s" data-aos="fade-up" data-aos-anchor="[data-aos-id-3]"
data-aos-delay="200">Create End2End scripts and let it test all your scenarios
while you can assure your client about the Bug Free delivery.</p>
<!-- Button -->
<div class="c7jfw cs5eq c2jnb czx4s" data-aos="fade-up"
data-aos-anchor="[data-aos-id-3]" data-aos-delay="300">
<div>
<a target="_top" class="c4kx2 cfgg9 c0bsy c2a4l c0kfj c5bld ck941 cik6c"
href="https://uat-prepaid.m2pfintech.com/pp-automation-app/register">
Get Free Trial Now
<span class="c9b1l cba20 cwp06 c962e cyswi chi9x ce0e5">
<svg class="cdbva" width="12" height="10"
xmlns="http://www.w3.org/2000/svg">
<path
d="M1 6.002h7.586L6.293 8.295a1 1 0 1 0 1.414 1.414l4-4a1 1 0 0 0 0-1.416l-4-4a1 1 0 0 0-1.414 1.416l2.293 2.293H1a1 1 0 1 0 0 2Z">
</path>
</svg>
</span>
</a>
</div>
</div>
</div>
<!-- Image -->
<div class="cuwit cf1ub cup7d ccncc cb2cq cdsnr">
<div class="cxd6l ceclw c281n">
<lottie-player
src="https://assets10.lottiefiles.com/packages/lf20_v83oVND0xg.json"
background="transparent" speed="0.8" loop autoplay
style="transform: scale(2);"></lottie-player>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section #4 -->
<section class="ckowt" data-aos-id-4="">
<div class="c76mj cxd6l c2jnb">
<!-- Bg -->
<div class="cjtga cuauo caelx cid6d cy6n4 c1zfc co4if cibre ct2lc" aria-hidden="true"></div>
<div class="cjtga cuauo c0kt6 cyb45 cid6d c1zfc co4if cibre ct2lc" aria-hidden="true"></div>
<div class="c8scd c9ud7 c2jnb czfl2">
<div class="cenys c17pb">
<!-- Section content -->
<div class="cuwit cbkrz cfgg9 chyyp c5avi cxd6l c2hw8 ct22v c2jnb cim3e">
<!-- Content -->
<div class="c7u37 ccan0 coapw">
<!-- Copy -->
<h2 class="caahj ct4y7" data-aos="fade-up" data-aos-anchor="[data-aos-id-4]"
data-aos-delay="100">More Features</h2>
<p class="c23lu cshfb c82gj" data-aos="fade-up" data-aos-anchor="[data-aos-id-4]"
data-aos-delay="200">That's not it, we are continuously developing more features
time to time. Below is the list of developed features so far:</p>
<!-- Lists -->
<div class="c25ot c1v83 cyloq czx4s" data-aos="fade-up"
data-aos-anchor="[data-aos-id-4]" data-aos-delay="300">
<!-- Column #1 -->
<div>
<!-- <h5 class="c8dbe c9fsm">Physical Stores</h5> -->
<ul class="c23lu c4uvm c2a4l ct22v">
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Screenshots</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Reusable Process</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Object Bank</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Execution History</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Multi User</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Multi-Tenant</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Roles and Permission</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Logs</span>
</li>
</ul>
</div>
<!-- Column #2 -->
<div>
<!-- <h5 class="c8dbe c9fsm">Online Stores</h5> -->
<ul class="c23lu c4uvm c2a4l ct22v">
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Multiple Environment</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Multiple Bots</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Dockerized Application</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Jenkins Integration</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Multiple Machines</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Unmilited Execution</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>No Code Solution</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Easy To Understand</span>
</li>
</ul>
</div>
</div>
<!-- Button -->
<div class="c7jfw cs5eq c2jnb" data-aos="fade-up" data-aos-anchor="[data-aos-id-4]"
data-aos-delay="300">
<div>
<a target="_top" class="c4kx2 cfgg9 c0bsy c2a4l c0kfj c5bld ck941 cik6c"
href="https://uat-prepaid.m2pfintech.com/pp-automation-app/register">
Get Free Trial Now
<span class="c9b1l cba20 cwp06 c962e cyswi chi9x ce0e5">
<svg class="cdbva" width="12" height="10"
xmlns="http://www.w3.org/2000/svg">
<path
d="M1 6.002h7.586L6.293 8.295a1 1 0 1 0 1.414 1.414l4-4a1 1 0 0 0 0-1.416l-4-4a1 1 0 0 0-1.414 1.416l2.293 2.293H1a1 1 0 1 0 0 2Z">
</path>
</svg>
</span>
</a>
</div>
</div>
</div>
<!-- Image -->
<div class="cuwit cf1ub cup7d cod7l cb2cq cdsnr cuwit c4l56">
<div class="cxd6l ceclw c281n" data-aos-anchor="[data-aos-id-4]">
<div style="display: flex; gap:10px; align-items: center;"><img loading="lazy"
src="https://img.icons8.com/?size=512&id=UacDkZoKsQlV&format=png"
style="width:50px" />
<div style="font-weight: 600; font-size: 17px;"> Tech Stack</div>
</div>
<div style="display:flex; flex-wrap:wrap; gap:30px;">
<img loading="lazy" style="width:100px"
src="/images/stack/node.png" />
<img loading="lazy" style="width:90px; height:90px"
src="/images/stack/react.png" />
<img loading="lazy" style="width:100px"
src="/images/stack/selenium.png" />
<img loading="lazy" style="width:100px"
src="/images/stack/docker.png" />
<img loading="lazy" style="width:100px"
src="/images/stack/aws.png" />
<img loading="lazy" style="width:100px"
src="/images/stack/javascript.png" />
<img loading="lazy" style="width:100px"
src="/images/stack/html.png" />
<img loading="lazy" style="width:100px; transform: scale(1.2);"
src="/images/stack/css.png" />
<img loading="lazy" style="width:100px"
src="/images/stack/mysql.svg" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section #5 -->
<section>
<div class="c76mj cxd6l c2jnb">
<!-- Bg -->
<div class="cjtga cuauo c04qg c8f6c ch087 cid6d co4if cibre" aria-hidden="true"></div>
<div class="c8scd c9ud7 c2jnb czfl2">
<div class="cenys c17pb">
<!-- Section content -->
<div class="cuwit cbkrz c5avi cxd6l c2hw8 c2jnb">
<!-- Section header -->
<div class="cmx9w c9to6 cz8g9" data-aos="fade-up">
<h2 class="cr4vv caahj ct4y7" style="line-height: 1.2">Get started in minutes.
</h2>
<p class="c6rdy cshfb czx4s">Note: If you are executing in your local, Node must be
installed or you can use our server to directly execute your test case (paid)
</p>
</div>
<!-- Image -->
<div class="cjtob c82gj cim3e" data-aos="fade-up" data-aos-delay="100">
<div class="cxd6l" style="height:350px; margin-top:-130px ">
<img loading="lazy"
class="cuauo c94ys c902r ceggv ci7pi cpkfa cid6d czhmi cibre"
src="images/logos-illustration.svg" width="594" aria-hidden="true">
<lottie-player
src="https://assets4.lottiefiles.com/private_files/lf30_vdqgavca.json"
background="transparent" speed="1" loop autoplay></lottie-player>
</div>
</div>
<!-- Items -->
<div class="cpvc3 cuwit cu4zi cuo55 chitm clj8j cf1ub c2jnb csyq7 cz17u"
data-aos="fade-up" data-aos-delay="200">
<!-- 1st item -->
<div
class="cotx2 ckjl3 ch62p cdjn1 c34lp cmhky cyx82 cwwxq cf208 cilu6 cxd6l c8zdl">
<div class="cq1sm">
<div class="cjtob c9wpg cfgg9 cmhg9 cog40 c8dbe cim3e cqfz5 c6ix5">1</div>
</div>
<h4 class="cr4vv c8dbe cn6zh cynqs">Download the app</h4>
<p class="c6rdy">Download the application according to your Operating System.
</p>
</div>
<!-- 2nd item -->
<div
class="cotx2 ckjl3 ch62p cdjn1 c34lp cmhky cyx82 cwwxq cf208 cilu6 cxd6l c8zdl">
<div class="cq1sm">
<div class="cjtob c9wpg cfgg9 cmhg9 cog40 c8dbe cim3e cqfz5 c6ix5">2</div>
</div>
<h4 class="cr4vv c8dbe cn6zh cynqs">Create your Test Case</h4>
<p class="c6rdy">Create you Test Case with all your process and required steps.
</p>
</div>
<!-- 3rd item -->
<div
class="cotx2 ckjl3 ch62p cdjn1 c34lp cmhky cyx82 cwwxq cf208 cilu6 cxd6l c8zdl">
<div class="cq1sm">
<div class="cjtob c9wpg cfgg9 cmhg9 cog40 c8dbe cim3e cqfz5 c6ix5">3</div>
</div>
<h4 class="cr4vv c8dbe cn6zh cynqs">Execute and Chill</h4>
<p class="c6rdy">Start the execution and check the result under Execution
History</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section #6 -->
<section class="c64wh c925q" data-aos-id-6="">
<div class="c76mj cxd6l c2jnb">
<!-- Bg -->
<div class="cwzbd cuauo cx1p1 cypmz cid6d c1zfc co4if cibre ct2lc" aria-hidden="true"></div>
<div class="c8scd c9ud7 c2jnb czfl2">
<div class="cenys c17pb">
<!-- Section content -->
<div
class="choose-us-wrapper cuwit cbkrz cfgg9 chyyp c96lt c5avi cxd6l c2hw8 ct22v c2jnb cim3e">
<!-- Content -->
<div class="c7u37 ccan0 coapw">
<!-- Copy -->
<h2 class="caahj ct4y7" data-aos="fade-up" data-aos-anchor="[data-aos-id-6]"
data-aos-delay="100">Why Choose Us?</h2>
<p class="c23lu cshfb c82gj" data-aos="fade-up" data-aos-anchor="[data-aos-id-6]"
data-aos-delay="200">We offer custom implementation according to your business
and also provides additional support for amlost everything.</p>
<ul class="c23lu c4uvm c2a4l ct22v" data-aos="fade-up"
data-aos-anchor="[data-aos-id-6]" data-aos-delay="300">
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>
Scriptless and automated Test Case enables functional and non-technical
users to use the platform seamlessly without any prior automation
knoweledge
</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>Increases cross-functional and team collaboration thereby boosts
productivity drastically</span>
</li>
<li class="cfgg9 cim3e">
<svg class="coapw c3tn4" width="20" height="20"
xmlns="http://www.w3.org/2000/svg">
<circle class="cie0e" cx="10" cy="10" r="10"></circle>
<path class="c668d"
d="M15.335 7.933 14.87 7c-4.025 1.167-6.067 3.733-6.067 3.733l-1.867-1.4-.933.934L8.802 14c2.158-4.025 6.533-6.067 6.533-6.067Z">
</path>
</svg>
<span>
Significant reduction in the automation implementation effort, thus
saving a lot of time</span>
</li>
</div>
<!-- Carousel -->
<div class="cuwit cf1ub cup7d ccncc cb2cq c925q" data-aos="fade-up"
data-aos-anchor="[data-aos-id-6]">
<div class="cxd6l cf1ub c2jnb">
<!-- <div class="cvwog cid6d co4if cop50 cq5se cibre ck7jj" aria-hidden="true"></div> -->
<!-- Carousel built with Swiper.js [https://swiperjs.com/] -->
<!-- * Initialized in src/js/main.js -->
<!-- * Custom styles in src/css/additional-styles/theme.scss -->
<div class="testimonial-carousel swiper-container c7jfw cf1ub c2jnb">
<div class="swiper-wrapper">
<div class="swiper-slide c2cae cuo55 ct22v c3p8e cim3e">
<img loading="lazy"
src="/images/demoss/dashboard.png"
class="cuwit" alt="Dashboard">
</div>
<div class="swiper-slide c2cae cuo55 ct22v c3p8e cim3e">
<img loading="lazy"
src="/images/demoss/projectlist.png"
class="cuwit" alt="ProjectList">
</div>
<div class="swiper-slide c2cae cuo55 ct22v c3p8e cim3e">
<img loading="lazy"
src="/images/demoss/projectdetail.png"
class="cuwit" alt="Project Detail">
</div>
<div class="swiper-slide c2cae cuo55 ct22v c3p8e cim3e">
<img loading="lazy"
src="/images/demoss/testcaselist.png"
class="cuwit" alt="Test Case List">
</div>
<div class="swiper-slide c2cae cuo55 ct22v c3p8e cim3e">
<img loading="lazy"
src="/images/demoss/testcasedetail.png"
class="cuwit" alt="Test Case Detail">
</div>
<div class="swiper-slide c2cae cuo55 ct22v c3p8e cim3e">
<img loading="lazy"
src="/images/demoss/history.png"
class="cuwit" alt="Exdcution History">
</div>
</div>
</div>
<!-- Bullets -->
<div class="c9824">
<div class="testimonial-carousel-pagination c5avi"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section #7 -->
<section>
<div class="c76mj cxd6l c2jnb">
<!-- Bg -->
<div class="cjtga cuauo caelx cid6d cy6n4 c1zfc co4if cibre ct2lc" aria-hidden="true"></div>
<div class="cjtga cuauo c0kt6 cyb45 cid6d c1zfc co4if cibre ct2lc" aria-hidden="true"></div>
<div class="c8scd c9ud7 c2jnb czfl2">
<div class="cenys c17pb">
<!-- Section content -->
<div class="cuwit cbkrz c5avi cxd6l c2hw8 c2jnb">
<!-- Section header -->
<div class="cmx9w c9to6 cz8g9" data-aos="fade-up">
<h2 class="caahj ct4y7">Register now and get a free trial for 14 days!</h2>
<p class="c23lu cshfb czx4s">Within this 14 days time period you can access every
feature, and the best part is that there is no limit!
</p>
</div>
<!-- Pricing tables -->
<div class="ci2bt cpta0 ccus3 cay49 cu4zi cajfu cf1ub c2jnb cgj4f cz17u"
data-aos="fade-up" data-aos-delay="100">
<!-- Pricing table 1 -->
<div class="c9v1r cxd6l ct22v c7vx3 cim3e cyytj caz0m">
<div class="caahj">
<div class="c8106 cb2cq" style="width:210px;height:124px;
background-image: linear-gradient(#662D8C , #ED1E79);
font-family: FreeHand;
display: flex;
justify-content: center;
align-items: center;
color:white;
font-size: 50px;">
Starter
</div>
</div>
<div class="c9fsm">
<div class="cb4io c5avi c8dbe cflej caahj">$0/m</div>
<a class="c4kx2 cfgg9 c0bsy c2a4l c0kfj c5bld ck941 cb2cq" target="_top"
href="https://uat-prepaid.m2pfintech.com/pp-automation-app/register">Get
Starter</a>
</div>
<div class="cb4io cn3gz caahj">Features Include</div>
<ul class="c23lu ct085 cuo55">
<li class="cu4zi cim3e">
<svg class="cp3at cdbva coapw cluos c3tn4 cmo3q ct0o3"
viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
<path
d="M10.28 2.28L3.989 8.575 1.695 6.28A1 1 0 00.28 7.695l3 3a1 1 0 001.414 0l7-7A1 1 0 0010.28 2.28z">
</path>
</svg>
<span>Execution on Local Machine</span>
</li>
<li class="cu4zi cim3e">
<svg class="cp3at cdbva coapw cluos c3tn4 cmo3q ct0o3"
viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
<path
d="M10.28 2.28L3.989 8.575 1.695 6.28A1 1 0 00.28 7.695l3 3a1 1 0 001.414 0l7-7A1 1 0 0010.28 2.28z">
</path>
</svg>
<span>Upto 3 Team Members</span>
</li>
<li class="cu4zi cim3e">
<svg class="cp3at cdbva coapw cluos c3tn4 cmo3q ct0o3"
viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
<path
d="M10.28 2.28L3.989 8.575 1.695 6.28A1 1 0 00.28 7.695l3 3a1 1 0 001.414 0l7-7A1 1 0 0010.28 2.28z">
</path>
</svg>
<span>24/7 Support (Email)</span>
</li>
</ul>
</div>
<!-- Pricing table 2 -->
<div class="c9v1r cx1p1 cp1b6 ct0bv cxd6l ct22v c7vx3 cim3e cyytj caz0m">
<div
class="c94ys cmhg9 camah c2a4l csu4e cr4vv cid6d cxedw ccpqs cih01 cnsne cmul6 cib6d">
Popular
</div>
<div class="caahj">
<div class="c8106 cb2cq" style="width:210px;height:124px;
background-image: linear-gradient(#02AABD, #00CDAC);
font-family: FreeHand;
display: flex;
justify-content: center;
align-items: center;
color:white;
font-size: 50px;">
Smart
</div>
</div>
<div class="c9fsm">
<div class="cb4io c5avi c8dbe cflej caahj">$5/m</div>
<a class="c3jy2 cz75y cfgg9 c2u4q c2a4l c5bld ck941 cb2cq" target="_top"
href="https://uat-prepaid.m2pfintech.com/pp-automation-app/register">Get
Smart</a>
</div>
<div class="cb4io cn3gz caahj">Features Include</div>
<ul class="c23lu ct085 cuo55">
<li class="cu4zi cim3e">
<svg class="cp3at cdbva coapw cluos c3tn4 cmo3q ct0o3"
viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
<path
d="M10.28 2.28L3.989 8.575 1.695 6.28A1 1 0 00.28 7.695l3 3a1 1 0 001.414 0l7-7A1 1 0 0010.28 2.28z">
</path>
</svg>
<span>Free 14 days Trial</span>
</li>
<li class="cu4zi cim3e">
<svg class="cp3at cdbva coapw cluos c3tn4 cmo3q ct0o3"
viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
<path
d="M10.28 2.28L3.989 8.575 1.695 6.28A1 1 0 00.28 7.695l3 3a1 1 0 001.414 0l7-7A1 1 0 0010.28 2.28z">
</path>
</svg>
<span>Execution on Local Machine</span>
</li>
<li class="cu4zi cim3e">
<svg class="cp3at cdbva coapw cluos c3tn4 cmo3q ct0o3"
viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
<path
d="M10.28 2.28L3.989 8.575 1.695 6.28A1 1 0 00.28 7.695l3 3a1 1 0 001.414 0l7-7A1 1 0 0010.28 2.28z">
</path>
</svg>
<span>Execution on Server Machine</span>
</li>
<li class="cu4zi cim3e">
<svg class="cp3at cdbva coapw cluos c3tn4 cmo3q ct0o3"
viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
<path
d="M10.28 2.28L3.989 8.575 1.695 6.28A1 1 0 00.28 7.695l3 3a1 1 0 001.414 0l7-7A1 1 0 0010.28 2.28z">
</path>
</svg>