-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathediting.html
More file actions
161 lines (140 loc) · 6.42 KB
/
Copy pathediting.html
File metadata and controls
161 lines (140 loc) · 6.42 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Editing | 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">
Editing the Object Repository
</div>
</nav>
<!-- Content Area -->
<div class="container mt-4">
<div class="row">
<div class="col">
<h2>Editor</h2>
<p>
The Editor is designed to maintain the object repository to ensure it adapts to emerging changes in the web application.
Existing pages can be manually modified at any time or updated through re-enrollment as the project evolves.
Additionally, test data model and factory classes can be enabled for code generation to simplify the handling of fillform
operations used by test scripts.
Both pages and tests can be previewed in the code viewer as a final validation before generating the source code.
All changes made in the Expressium application will be preserved in the object repository file.
</p>
</div>
</div>
</div>
<!-- Content Area -->
<div class="container mt-4">
<div class="row">
<div class="col">
<div class="slideshow-container">
<div class="slides">
<img class="picture" src="images/pageControlDialog.png" alt="Page Control Dialog" />
</div>
<div class="slides">
<img class="picture" src="images/pageDialog.png" alt="Project Preview Dialog" />
</div>
<div class="slides">
<img class="picture" src="images/codeViewerDialog.png" alt="Code Viewer Dialog" />
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
</div>
</div>
</div>
</div>
<br />
<!-- Subheadline Area -->
<nav class="navbar navbar-expand-lg navbar-dark subheadline">
<div class="container">
<div></div>
<div align="right">
<a href="codeGeneration.html" class="pagning">« Previous</a>
<a href="configuration.html" class="pagning">Next »</a>
</div>
</div>
</nav>
<!-- 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>