- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeGeneration.html
More file actions
Latest commit
161 lines (140 loc) · 6.35 KB
/
Copy pathcodeGeneration.html
File metadata and controls
161 lines (140 loc) · 6.35 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
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metaname="viewport" content="width=device-width, initial-scale=1.0">
<title>Code Generation | Expressium</title>
<linkhref="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<linkhref="stylesheet.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- Top Menu -->
<navclass="navbar navbar-expand-lg navbar-dark">
<divclass="container">
<aclass="navbar-brand" href="index.html"><imgclass="logo" src="images/logo.png" />Expressium</a>
<buttonclass="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<spanclass="navbar-toggler-icon"></span>
</button>
<divclass="collapse navbar-collapse" id="navbarNav">
<ulclass="navbar-nav">
<liclass="nav-item">
<aclass="nav-link" href="index.html">Home</a>
</li>
<liclass="nav-item dropdown">
<aclass="nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Features
</a>
<ulclass="dropdown-menu">
<li><aclass="dropdown-item" href="solution.html">Solution</a></li>
<li><aclass="dropdown-item" href="enrollment.html">Enrollment</a></li>
<li><aclass="dropdown-item" href="codeGeneration.html">Code Generation</a></li>
<li><aclass="dropdown-item" href="editing.html">Editing</a></li>
<li><aclass="dropdown-item" href="configuration.html">Configuration</a></li>
<li><aclass="dropdown-item" href="customization.html">Customization</a></li>
<li><aclass="dropdown-item" href="tutorial.html">Tutorial</a></li>
</ul>
</li>
<liclass="nav-item">
<aclass="nav-link" href="download.html">Download</a>
</li>
<liclass="nav-item">
<aclass="nav-link" href="about.html">About</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Subheadline Area -->
<navclass="navbar navbar-expand-lg navbar-dark subheadline">
<divclass="container">
Code Generating Pages
</div>
</nav>
<!-- Content Area -->
<divclass="container mt-4">
<divclass="row">
<divclass="col">
<h2>Code Generator</h2>
<p>
The Code Generator creates page objects and UI test classes within the IDE solution
based on the content of the Expressium object repository. These UI tests are designed
as non-destructive smoke tests for the web application and includes reusable code snippets
for the subsequent development of the business test.
Although Expressium generates most of the framework source code, an initial verification and minor
customization of the page objects and UI tests may be required after code generation.
</p>
</div>
</div>
</div>
<!-- Content Area -->
<divclass="container mt-4">
<divclass="row">
<divclass="col">
<divclass="slideshow-container">
<divclass="slides">
<imgclass="picture" src="images/codeGenerateDialog.png" alt="Code Genrate Dialog" />
</div>
<divclass="slides">
<imgclass="picture" src="images/visualStudioTest.png" alt="Visual Studio Test" />
</div>
<divclass="slides">
<imgclass="picture" src="images/visualStudioTestExplorer.png" alt="Visual Studio Test Explorer" />
</div>
<aclass="prev" onclick="plusSlides(-1)">❮</a>
<aclass="next" onclick="plusSlides(1)">❯</a>
<divstyle="text-align:center">
<spanclass="dot" onclick="currentSlide(1)"></span>
<spanclass="dot" onclick="currentSlide(2)"></span>
<spanclass="dot" onclick="currentSlide(3)"></span>
</div>
</div>
</div>
</div>
</div>
<br/>
<!-- Subheadline Area -->
<navclass="navbar navbar-expand-lg navbar-dark subheadline">
<divclass="container">
<div></div>
<divalign="right">
<ahref="enrollment.html" class="pagning">« Previous</a>
<ahref="editing.html" class="pagning">Next »</a>
</div>
</div>
</nav>
<!-- Footer -->
<footerclass="text-center">
<divclass="container">
<p>© 2026 Expressium All Rights Reserved</p>
</div>
</footer>
<!-- Bootstrap JS -->
<scriptsrc="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
<script>
letslideIndex=1;
showSlides(slideIndex);
functionplusSlides(n){
showSlides(slideIndex+=n);
}
functioncurrentSlide(n){
showSlides(slideIndex=n);
}
functionshowSlides(n){
leti;
letslides=document.getElementsByClassName("slides");
letdots=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>