-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1157 lines (1134 loc) · 68.5 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">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>MaxSoft</title>
<meta content="MaxSoft Web Site" name="description">
<meta content="MaxSoft, Software Development, Software Test Automation, Open Source, FOSS" name="keywords">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/img/favicon/site.webmanifest">
<link rel="mask-icon" href="assets/img/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#151515">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top header-scrolled">
<div class="container">
<h1 class="logo me-auto me-lg-0">
<a href="index.html" class="logo me-auto me-lg-0">
<img src="assets/img/logo.png" alt="" class="img-fluid">
</a>
<a href="index.html">
MaxSoft
<span>.</span>
</a>
</h1>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li>
<a class="nav-link scrollto active" href="#intro">Home</a>
</li>
<li>
<a class="nav-link scrollto" href="#about">About</a>
</li>
<li>
<a class="nav-link scrollto" href="#services">Services</a>
</li>
<li>
<a class="nav-link scrollto" href="#portfolio">Projects & Publications</a>
</li>
<li>
<a class="nav-link scrollto" href="#team">Team</a>
</li>
<li>
<a class="nav-link scrollto" href="#contact">Contact</a>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<a href="#about" class="get-started-btn scrollto">Get Started</a>
</div>
</header>
<!-- End Header -->
<!-- ======= Intro Section ======= -->
<section id="intro">
<div class="intro-container">
<div id="introCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="carousel-background">
<img src="assets/img/intro-carousel/1.jpg" alt="">
</div>
<div class="carousel-container">
<div class="carousel-content">
<h2>We are professional</h2>
<p>
We develop open source frameworks, plugins, components and
applications which can be easily used for anyone.
</p>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background">
<img src="assets/img/intro-carousel/2.jpg" alt="">
</div>
<div class="carousel-container">
<div class="carousel-content">
<h2>We love innovation</h2>
<p>
We are problem seekers who loves to solve problems using our
algorithmic and technical skills.
</p>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background">
<img src="assets/img/intro-carousel/3.jpg" alt="">
</div>
<div class="carousel-container">
<div class="carousel-content">
<h2>We are open source</h2>
<p>We contribute to the FOSS community.</p>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background">
<img src="assets/img/intro-carousel/4.jpg" alt="">
</div>
<div class="carousel-container">
<div class="carousel-content">
<h2>We help others</h2>
<p>
We supports to the people by giving technical consultancy
and career guidance.
</p>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background">
<img src="assets/img/intro-carousel/5.jpg" alt="">
</div>
<div class="carousel-container">
<div class="carousel-content">
<h2>We drive agile</h2>
<p>We run agile as the software development methodology.</p>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#introCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon ion-chevron-left" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#introCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon ion-chevron-right" aria-hidden="true"></span>
</a>
</div>
</div>
</section>
<!-- End Intro -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About</h2>
<p>Who we are?</p>
</div>
<div class="row">
<div class="col-lg-6 order-1 order-lg-2" data-aos="fade-left" data-aos-delay="100">
<img src="assets/img/about.jpg" class="img-fluid" style="width: auto; height: auto" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 order-2 order-lg-1 content" data-aos="fade-right" data-aos-delay="100">
<h3>MaxSoft is an Open Source Organization</h3>
<p class="fst-italic">
MaxSoft focuses on developing open source frameworks, plugins,
components and applications which can be easily used by anyone.
</p>
<ul>
<li>
<i class="ri-check-double-line"></i>
Web UI automation framework development.
</li>
<li>
<i class="ri-check-double-line"></i>
Mobile automation framework development.
</li>
<li>
<i class="ri-check-double-line"></i>
API automation framework development.
</li>
<li>
<i class="ri-check-double-line"></i>
Setting up and configuring CI/CD pipelines.
</li>
<li>
<i class="ri-check-double-line"></i>
Application monitoring tools implementation.
</li>
<li>
<i class="ri-check-double-line"></i>
Software test automation consultaions.
</li>
<li>
<i class="ri-check-double-line"></i>
Software test automation trainings.
</li>
</ul>
</div>
</div>
<br>
<div class="row about-cols">
<div class="col-md-4 wow fadeInUp">
<div class="about-col">
<div class="img">
<img src="assets/img/about/mission.jpg" alt="" class="img-fluid">
<div class="icon">
<i class="ion-ios-speedometer-outline"></i>
</div>
</div>
<h2 class="title">
<a href="#">Our Mission</a>
</h2>
<p>
Providing open source test automation frameworks which is efficient, smart and simple.
</p>
</div>
</div>
<div class="col-md-4 wow fadeInUp" data-wow-delay="0.1s">
<div class="about-col">
<div class="img">
<img src="assets/img/about/plan.jpg" alt="" class="img-fluid">
<div class="icon">
<i class="ion-ios-list-outline"></i>
</div>
</div>
<h2 class="title">
<a href="#">Our Plan</a>
</h2>
<p>
To be the best test automation frameworks, pugins and
components provider in Sri Lanka.
</p>
</div>
</div>
<div class="col-md-4 wow fadeInUp" data-wow-delay="0.2s">
<div class="about-col">
<div class="img">
<img src="assets/img/about/vision.jpg" alt="" class="img-fluid">
<div class="icon">
<i class="ion-ios-eye-outline"></i>
</div>
</div>
<h2 class="title">
<a href="#">Our Vision</a>
</h2>
<p>
Developing test automation frameworks, plugins, and components for any requirements.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Technologies Section ======= -->
<section id="clients" class="clients">
<div class="container" data-aos="zoom-in">
<div class="clients-slider swiper">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide">
<img width="110px" height="110px" src="assets/img/technologies/gauge.png" class="img-fluid" alt="Gauge">
</div>
<div class="swiper-slide">
<img width="100px" height="90px" src="assets/img/technologies/testng.png" class="img-fluid" alt="TestNG">
</div>
<div class="swiper-slide">
<img width="70px" height="70px" src="assets/img/technologies/appium.png" class="img-fluid" alt="Appium">
</div>
<div class="swiper-slide">
<img width="55px" height="55px" src="assets/img/technologies/selenium.png" class="img-fluid" alt="Selenium">
</div>
<div class="swiper-slide">
<img width="55px" height="55px" src="assets/img/technologies/rest-assured.png" class="img-fluid" alt="Rest-Assured">
</div>
<div class="swiper-slide">
<img width="70px" height="70px" src="assets/img/technologies/java.png" class="img-fluid" alt="Java">
</div>
<div class="swiper-slide">
<img width="110px" height="110px" src="assets/img/technologies/maven.png" class="img-fluid" alt="Maven">
</div>
<div class="swiper-slide">
<img width="55px" height="55px" src="assets/img/technologies/javascript.png" class="img-fluid" alt="JavaScript">
</div>
<div class="swiper-slide">
<img width="55px" height="55px" src="assets/img/technologies/typescript.png" class="img-fluid" alt="TypeScript">
</div>
<div class="swiper-slide">
<img width="70px" height="70px" src="assets/img/technologies/python.png" class="img-fluid" alt="Python">
</div>
<div class="swiper-slide">
<img width="70px" height="70px" src="assets/img/technologies/jenkins.png" class="img-fluid" alt="Jenkins">
</div>
<div class="swiper-slide">
<img width="60px" height="60px" src="assets/img/technologies/azure.png" class="img-fluid" alt="Azure">
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- End Technologies Section -->
<!-- ======= Features Section ======= -->
<section id="features" class="features">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="image col-lg-6" style="background-image: url('assets/img/features.jpg')" data-aos="fade-right"></div>
<div class="col-lg-6" data-aos="fade-left" data-aos-delay="100">
<div class="icon-box mt-5 mt-lg-0" data-aos="zoom-in" data-aos-delay="150">
<i class="bx bx-receipt"></i>
<h4>We are professional</h4>
<p>
We develop open source frameworks, plugins, components and
applications which can be easily used for anyone.
</p>
</div>
<div class="icon-box mt-5" data-aos="zoom-in" data-aos-delay="150">
<i class="bx bx-cube-alt"></i>
<h4>We love innovation</h4>
<p>
We are problem seekers who loves to solve problems using our
algorithmic and technical skills.
</p>
</div>
<div class="icon-box mt-5" data-aos="zoom-in" data-aos-delay="150">
<i class="bx bx-images"></i>
<h4>We are open source</h4>
<p>We contribute to the FOSS community.</p>
</div>
<div class="icon-box mt-5" data-aos="zoom-in" data-aos-delay="150">
<i class="bx bx-shield"></i>
<h4>We are agile driven</h4>
<p>We follow agile as the software development methodology.</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Features Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Services</h2>
<p>Check our Services</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box">
<div class="icon">
<i class="bx bxl-dribbble"></i>
</div>
<h4>
<a href="">Web Applications Test Automation Framework Development</a>
</h4>
<p>
We are experienced in designing and developing behavior driven
test automation frameworks for web applications based on your
requirements.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box">
<div class="icon">
<i class="bx bx-file"></i>
</div>
<h4>
<a href="">Mobile Applications Test Automation Framework Development</a>
</h4>
<p>
We are experienced in designing and developing behavior driven
test automation frameworks for mobile (Android & iOS)
applications based on your requirements.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box">
<div class="icon">
<i class="bx bx-tachometer"></i>
</div>
<h4>
<a href="">API Test Automation Framework Development</a>
</h4>
<p>
We are experienced in designing and developing behavior driven
test automation frameworks for backend-services based on your
requirements.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box">
<div class="icon">
<i class="bx bx-world"></i>
</div>
<h4>
<a href="">Setting Up & Configuring CI/CD Pipelines</a>
</h4>
<p>
A Continuous Integration/Continuous Delivery pipeline is a
series of steps that must be performed in order to deliver a
new version of software. CI/CD pipelines are a practice
focused on improving software delivery using either a DevOps
or Site Reliability Engineering (SRE) approach.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box">
<div class="icon">
<i class="bx bx-slideshow"></i>
</div>
<h4>
<a href="">Automation Consultation</a>
</h4>
<p>
As a professional organization, we are providing expert advice
on areas such as automation strategy, framework design and
implementation.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box">
<div class="icon">
<i class="bx bx-arch"></i>
</div>
<h4>
<a href="">Automation Training & Workshops</a>
</h4>
<p>
We are experienced in conducting effective professional
training sessions & workshops on automation development. Those
solid training sessions will focus on practical aspects of the
automation types of Web, API, and Mobile.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<!-- ======= Cta Section ======= -->
<section id="cta" class="cta">
<div class="container" data-aos="zoom-in">
<div class="text-center">
<h3>Call To Action</h3>
<p>
Get in touch with us on any query you have. You can reach us by phone or email.
We would be happy to answer your queries and set up a meeting with you according to your desire.
MaxSoft always love to colloborate with others.
</p>
<a class="cta-btn" href="#contact">Call To Action</a>
</div>
</div>
</section>
<!-- End Cta Section -->
<!-- ======= Projects & Publications Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Projects & Publications</h2>
<p>Check our Projects & Publications</p>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">Projects</li>
<li data-filter=".filter-web">Publications</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="200">
<div class="container">
<div class="row">
<!-- Publications -->
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="card">
<img src="assets/img/publications/intelliapi1.jpg" class="card-img-top" alt="MaxSoft IntelliAPI">
<div class="card-body-center">
<h5 class="card-title">
<b>MaxSoft IntelliAPI</b>
</h5>
<p class="card-text">
A simple, code-free and efficient framework for
technical QE, non-technical QE or developer to perform
API automation in an easy manner.
</p>
<a href="maxsoft-intelliapi.html" target="_blank">
<div class="text-center">
<button class="card-button" type="submit">
More Details
</button>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="card">
<img src="assets/img/publications/testngresultsanalyzer1.png" class="card-img-top" alt="MaxSoft TestNG Test Results Analyzer">
<div class="card-body-center">
<h5 class="card-title">
<b>MaxSoft TestNG Test Results Analyzer</b>
</h5>
<p class="card-text">
A reporting plugin for TestNG which automatically generates an Excel report
with the failed and skipped tests grouped against the reason.
</p>
<a href="maxsoft-testng-test-results-analyzer.html" target="_blank">
<div class="text-center">
<button class="card-button" type="submit">
More Details
</button>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="card">
<img src="assets/img/publications/greporter1.png" class="card-img-top" alt="MaxSoft GReporter">
<div class="card-body-center">
<h5 class="card-title">
<b>MaxSoft GReporter</b>
</h5>
<p class="card-text">
A reporting plugin for Gauge framework to send the test execution
summary report with graphical representation to a
defined audience via an email.
</p>
<a href="maxsoft-greporter.html" target="_blank">
<div class="text-center">
<button class="card-button" type="submit">
More Details
</button>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="card">
<img src="assets/img/publications/healthchecker1.png" class="card-img-top" alt="MaxSoft API Health Checker">
<div class="card-body-center">
<h5 class="card-title">
<b>MaxSoft API Health Checker</b>
</h5>
<p class="card-text">
A real time health checking dashboard to monitor the
availability of all the backend services integrated with
any project in any environment.
</p>
<a href="maxsoft-api-healthchecker.html" target="_blank">
<div class="text-center">
<button class="card-button" type="submit">
More Details
</button>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="card">
<img src="assets/img/publications/extentreport1.png" class="card-img-top" alt="MaxSoft Extent Reporter">
<div class="card-body-center">
<h5 class="card-title">
<b>MaxSoft Extent Reporter</b>
</h5>
<p class="card-text">
An easily integratable reporting plugin which
automatically generates the Extent report for any kind
of TestNG based test automation framework.
</p>
<a href="maxsoft-extent-reporter.html" target="_blank">
<div class="text-center">
<button class="card-button" type="submit">
More Details
</button>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="card">
<img src="assets/img/publications/webdrivermanager1.png" class="card-img-top" alt="MaxSoft WebDriver Manager">
<div class="card-body-center">
<h5 class="card-title">
<b>MaxSoft WebDriver Manager</b>
</h5>
<p class="card-text">
A plugin to provide an easy way for quality engineers or
automation engineers to spin-up any browser instance in
any platform without any configurations.
</p>
<a href="maxsoft-webdriver-manager.html" target="_blank">
<div class="text-center">
<button class="card-button" type="submit">
More Details
</button>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="card">
<img src="assets/img/publications/testautomationmaster1.jpg" class="card-img-top" alt="Test Automation Master">
<div class="card-body-center">
<h5 class="card-title">
<b>Test Automation Master</b>
</h5>
<p class="card-text">
A wide range of test automation tutorials with latest
technologies covering Web, Mobile and API Automation as
well as DevOps related technologies.
</p>
<a href="test-automation-master.html" target="_blank">
<div class="text-center">
<button class="card-button" type="submit">
More Details
</button>
</div>
</a>
</div>
</div>
</div>
<!-- Projects -->
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="card">
<img src="assets/img/projects/webbot1.jpg" class="card-img-top" alt="MaxSoft WebBot">
<div class="card-body-center">
<h5 class="card-title">
<b>MaxSoft WebBot</b>
</h5>
<p class="card-text">
A simple, code-free and efficient framework for
technical QE, non-technical QE or developer to perform
Web UI automation in an easy manner.
</p>
<a href="maxsoft-webbot.html" target="_blank">
<div class="text-center">
<button class="card-button" type="submit">
More Details
</button>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="card">
<img src="assets/img/projects/soapuitogauge.png" class="card-img-top" alt="MaxSoft WebBot">
<div class="card-body-center">
<h5 class="card-title">
<b>MaxSoft SoapUI To Gauge Plugin</b>
</h5>
<p class="card-text">
A plugin to execute a SoapUI test suite XML
from Gauge framework and generate a detailed
HTML report with all SoapUI test steps.
</p>
<a href="soapui-to-gauge.html" target="_blank">
<div class="text-center">
<button class="card-button" type="submit">
More Details
</button>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Projects & Publications Section -->
<!-- ======= Facts Section ======= -->
<section id="counts" class="counts">
<div class="container" data-aos="fade-up">
<div class="row no-gutters">
<div class="image col-xl-5 d-flex align-items-stretch justify-content-center justify-content-lg-start" data-aos="fade-right" data-aos-delay="100"></div>
<div class="col-xl-7 ps-0 ps-lg-5 pe-lg-1 d-flex align-items-stretch" data-aos="fade-left" data-aos-delay="100">
<div class="content d-flex flex-column justify-content-center">
<h3>FACTS</h3>
<p>
MaxSoft leverages software development process smoother and more efficient by providing free and open source
solutions for developers and testers which also make their lives easier.
</p>
<div class="row">
<div class="col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="bi bi-emoji-smile"></i>
<span data-purecounter-start="0" data-purecounter-end="65" data-purecounter-duration="2" class="purecounter"></span>
<p>
<strong>Happy Clients</strong>
</p>
</div>
</div>
<div class="col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="bi bi-journal-richtext"></i>
<span data-purecounter-start="0" data-purecounter-end="122" data-purecounter-duration="2" class="purecounter"></span>
<p>
<strong>Projects</strong>
</p>
</div>
</div>
<div class="col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="bi bi-clock"></i>
<span data-purecounter-start="0" data-purecounter-end="5" data-purecounter-duration="2" class="purecounter"></span>
<p>
<strong>Years of experience</strong>
</p>
</div>
</div>
<div class="col-md-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<i class="bi bi-award"></i>
<span data-purecounter-start="0" data-purecounter-end="5" data-purecounter-duration="2" class="purecounter"></span>
<p>
<strong>Awards</strong>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Facts Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials">
<div class="container" data-aos="zoom-in">
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/dilp.jpg" class="testimonial-img" alt="">
<h3>Dilp Udara Wickramasinghe</h3>
<h4>Senior Quality Engineering Lead at Sysco LABS, Sri Lanka</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
MaxSoft is one of the best innovative companies in the world.
Their products are simple, efficient and easy to use.
<br /> <br />
I have worked with one of their open source product called "IntelliAPI" which enables
codeless API automation helps to speedup the software development lifecycle. Further, IntelliAPI leverages
API automation for any kind of person regardless of their technical capability. As well, it provides a good
reporting for developers, business stakeholders and management.
<br /> <br />
In addition to the open source products, they also provides valuable workshops and training sessions which helps
to improve automation and technical skills. I highly recommend MaxSoft for the people who love to learn and master
automation engineering.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/harshan.jpg" class="testimonial-img" alt="">
<h3>Harsharn Wijewardana</h3>
<h4>Quality Engineering Professional at CAM Management Solutions (CAMMS), Sri Lanka</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Automation is not a buzz word anymore. It’s a strategic priority defining an organization’s success.
Partly due to the ‘shift’ towards the agile paradigm & the need for
continuous integration, automation is now ‘a must’ for QA.
<br /> <br />
As far as automation training is concerned MaxSoft could be referred to as a ‘Maestro’ of our time.
Highly technical, competent & knowledgeable their teaching skill is unmatched!
Their sessions were extremely informative & interactive. They focused not only on theoretical aspects,
but primarily on practicality. For instance the application of automation
& its advanced methods in the relentlessly evolving software engineering discipline.
<br /> <br />
I see MaxSoft as a great company & sincerely hope it continues to
work with us here in Sri Lanka to serve the country & uplift those who seek an education in automation,
thereby fulfilling their goals & objectives.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- End Testimonials Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Team</h2>
<p>Check our Team</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="100">
<div class="member-img">
<img src="assets/img/team/Osanda.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/osandadeshan" target="_blank">
<i class="bi bi-twitter"></i>
</a>
<a href="https://www.facebook.com/osanda.nimalarathna" target="_blank">
<i class="bi bi-facebook"></i>
</a>
<a href="https://www.instagram.com/osanda.deshan" target="_blank">
<i class="bi bi-instagram"></i>
</a>
<a href="https://www.linkedin.com/in/osandadeshan" target="_blank">
<i class="bi bi-linkedin"></i>
</a>
</div>
</div>
<div class="member-info">
<h4>Osanda Nimalarathna</h4>
<span>Founder and Lead Engineer</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="200">
<div class="member-img">
<img src="assets/img/team/Dulaj.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/dulajkaavinda" target="_blank">
<i class="bi bi-twitter"></i>
</a>
<a href="https://www.facebook.com/dulaj.kavind" target="_blank">
<i class="bi bi-facebook"></i>
</a>
<a href="https://www.instagram.com/dulaj.kaavinda/" target="_blank">
<i class="bi bi-instagram"></i>
</a>
<a href="https://www.linkedin.com/in/dulajkavinda/" target="_blank">
<i class="bi bi-linkedin"></i>
</a>
</div>
</div>
<div class="member-info">
<h4>Dulaj Kavinda</h4>
<span>Engineer</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="300">
<div class="member-img">
<img src="assets/img/team/team-3.jpg" class="img-fluid" alt="">
<div class="social">
<a href="" target="_blank">
<i class="bi bi-twitter"></i>
</a>
<a href="" target="_blank">
<i class="bi bi-facebook"></i>
</a>
<a href="" target="_blank">
<i class="bi bi-instagram"></i>
</a>
<a href="" target="_blank">
<i class="bi bi-linkedin"></i>
</a>
</div>
</div>
<div class="member-info">
<h4>William Anderson</h4>
<span>CTO</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch">
<div class="member" data-aos="fade-up" data-aos-delay="400">
<div class="member-img">
<img src="assets/img/team/team-4.jpg" class="img-fluid" alt="">
<div class="social">
<a href="" target="_blank">
<i class="bi bi-twitter"></i>
</a>
<a href="" target="_blank">
<i class="bi bi-facebook"></i>
</a>
<a href="" target="_blank">
<i class="bi bi-instagram"></i>
</a>
<a href="" target="_blank">
<i class="bi bi-linkedin"></i>
</a>
</div>
</div>
<div class="member-info">
<h4>Amanda Jepson</h4>
<span>Accountant</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Team Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Contact</h2>
<p>Contact Us</p>
</div>
<div>
<iframe style="border: 0; width: 100%; height: 270px" src="https://www.google.com/maps?q=ICTS Computer Academy, Poramba, Ambalangoda, Sri Lanka&output=embed&z=15" frameborder="0" allowfullscreen></iframe>
</div>
<div class="row mt-5">
<div class="col-lg-4">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>No 106, Poramba, Ambalangoda, Sri Lanka.</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<p>[email protected]</p>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<p>+94 71 55 22 087</p>
</div>
</div>
</div>
<div class="col-lg-8 mt-5 mt-lg-0">
<form action="forms/contact.php" method="post" role="form" class="php-email-form">
<div class="row">
<div class="col-md-6 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="col-md-6 form-group mt-3 mt-md-0">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" required>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="5" placeholder="Message" required></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">
Your message has been sent. Thank you!
</div>
</div>
<div class="text-center">
<button type="submit">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- End Contact Section -->
</main>
<!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">