-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
153 lines (134 loc) · 6.17 KB
/
Copy pathabout.html
File metadata and controls
153 lines (134 loc) · 6.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | Expressium</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="stylesheet.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- Top Menu -->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<a class="navbar-brand" href="index.html"><img class="logo" src="images/logo.png" />Expressium</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Features
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="solution.html">Solution</a></li>
<li><a class="dropdown-item" href="enrollment.html">Enrollment</a></li>
<li><a class="dropdown-item" href="codeGeneration.html">Code Generation</a></li>
<li><a class="dropdown-item" href="editing.html">Editing</a></li>
<li><a class="dropdown-item" href="configuration.html">Configuration</a></li>
<li><a class="dropdown-item" href="customization.html">Customization</a></li>
<li><a class="dropdown-item" href="tutorial.html">Tutorial</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="download.html">Download</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Subheadline Area -->
<nav class="navbar navbar-expand-lg navbar-dark subheadline">
<div class="container">
About Expressium
</div>
</nav>
<!-- Content Area -->
<div class="container mt-4">
<div class="row">
<div class="col">
<h2>About</h2>
<p>
Expressium is an open-source software tool designed for creating and maintaining a Selenium or Playwright test automation framework.
</p>
<p>
The Expressium project was initiated to address the time-consuming challenge
of building a test automation framework with an overwhelming amount of page objects.
By leveraging enrollment with code generation, Expressium streamlines the creation of foundational source code,
enabling teams to focus their time and energy on scripting business tests more efficiently.
</p>
<p>
At Expressium, we are committed to the agile mindset and dedicated to delivering robust solutions for software test automation.
We believe that code-based test automation is the most effective way to achieve a truly agile development lifecycle,
ensuring higher quality & faster delivery.
Our mission is to provide open-source solutions and cultivate a strong community for developers
who are passionate about code-based test automation. We invite you to join us!
</p>
</div>
</div>
</div>
<!-- Content Area -->
<div class="container mt-4">
<div class="row">
<div class="col">
<img class="picture" style="border: 0" src="images/continuousTesting.png" alt="Continuous Testing" />
</div>
</div>
</div>
<!-- Content Area -->
<div class="container mt-4">
<div class="row">
<div class="col">
<h4>Contact Information</h4>
<p>
Feedback and questions are more than welcome!<br />
<b>Email:</b> <a href="mailto:expressium@expressium.dev">expressium@expressium.dev</a><br />
<b>GitHub:</b> <a href="https://github.com/ExpressiumOSS">https://github.com/ExpressiumOSS</a>
</p>
</div>
</div>
</div>
<br />
<!-- Footer -->
<footer class="text-center">
<div class="container">
<p>© 2026 Expressium All Rights Reserved</p>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
<script>
let slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
let i;
let slides = document.getElementsByClassName("slides");
let dots = document.getElementsByClassName("dot");
if (n > slides.length) { slideIndex = 1 }
if (n < 1) { slideIndex = slides.length }
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex - 1].style.display = "block";
dots[slideIndex - 1].className += " active";
}
</script>
</body>
</html>