-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (114 loc) · 5.21 KB
/
Copy pathindex.html
File metadata and controls
123 lines (114 loc) · 5.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | 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">
Building a Test Automation Framework
</div>
</nav>
<!-- Content Area -->
<div class="container mt-4">
<div class="row">
<div class="col">
<h2>Overview</h2>
<p>Expressium is an open-source software tool designed for creating and maintaining a Selenium or Playwright test automation framework.</p>
<p>
Through intelligent enrollment of webpages and extensive code generation,
Expressium provides a complete test automation framework with clean source code
as a Visual Studio C# solution.
</p>
<p>
The generated output includes convenient extensions,
a Page Object Model set of classes and associated UI tests targeting the web application -
A solid foundation for writing business tests as traditional Keyword Driven or Behavior Driven Developing test scripts.
</p>
<p>
Once an initial test automation framework has been created the development
of the solution can continue in the source code without any dependencies to the Expressium application.
</p>
<p>
Expressium will boost the establishment of a Selenium or Playwright test automation framework - Fast & Easily...
</p>
</div>
</div>
</div>
<!-- Content Area -->
<div class="container mt-4">
<div class="row">
<div class="col center">
<img class="picture" style="border: 0" src="images/productOverview.png" alt="Product Overview">
</div>
</div>
</div>
<!-- Content Area -->
<div class="container mt-4">
<div class="row">
<div class="col">
<h4>Technologies</h4>
<ul>
<li>Visual Studio C#</li>
<li>Selenium / Playwright</li>
<li>NUnit</li>
<li>Log4net</li>
<li>ReqnRoll</li>
<li>Chrome / Edge / Firefox</li>
</ul>
</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>
</body>
</html>