Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nghyd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
Cassiopée
nghyd
Commits
cdccaf10
Commit
cdccaf10
authored
1 year ago
by
François Grand
Browse files
Options
Downloads
Patches
Plain Diff
refactor(e2e): migrate commit
652f8631
(
#614
)
refs
#618
parent
423362b2
No related branches found
No related tags found
2 merge requests
!225
Release v4.17.0
,
!221
Resolve "Migration des tests e2e vers WebDriverIO"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
e2e/load-save-session.e2e-spec.ts
+5
-15
5 additions, 15 deletions
e2e/load-save-session.e2e-spec.ts
e2e/util.po.ts
+13
-0
13 additions, 0 deletions
e2e/util.po.ts
with
18 additions
and
15 deletions
e2e/load-save-session.e2e-spec.ts
+
5
−
15
View file @
cdccaf10
...
...
@@ -4,7 +4,7 @@ import { CalculatorPage } from "./calculator.po";
import
{
Navbar
}
from
"
./navbar.po
"
;
import
{
SideNav
}
from
"
./sidenav.po
"
;
import
{
PreferencesPage
}
from
"
./preferences.po
"
;
import
{
changeSelectValue
,
expectNumber
}
from
"
./util.po
"
;
import
{
changeSelectValue
,
expectNumber
,
loadSession
}
from
"
./util.po
"
;
import
{
browser
,
$
,
$$
,
expect
}
from
'
@wdio/globals
'
const
fs
=
require
(
"
fs
"
);
...
...
@@ -54,16 +54,6 @@ async function saveSession(): Promise<string> {
return
findDownloadedFile
(
sessionFile
);
}
async
function
loadSession
(
path
:
string
)
{
await
navbar
.
clickMenuButton
();
await
browser
.
pause
(
500
);
await
sidenav
.
clickLoadSessionButton
();
await
browser
.
pause
(
200
);
await
sidenav
.
loadSessionFile
(
path
);
}
/**
* Save and load (serialise and unserialise) calculators to/from JSON files
*/
...
...
@@ -84,7 +74,7 @@ describe("ngHyd − save and load sessions", () => {
it
(
"
when loading session-6-calc.test.json file from home page, 6 calculators should be loaded
"
,
async
()
=>
{
await
startPage
.
navigateTo
();
await
loadSession
(
"
./session/session-6-calc.test.json
"
);
await
loadSession
(
navbar
,
sidenav
,
"
./session/session-6-calc.test.json
"
);
await
browser
.
pause
(
1000
);
expect
(
await
navbar
.
getAllCalculatorTabs
().
length
).
toBe
(
6
);
...
...
@@ -93,7 +83,7 @@ describe("ngHyd − save and load sessions", () => {
it
(
"
when loading session-optional-params.test.json file from home page, the calculator should be loaded
"
,
async
()
=>
{
await
startPage
.
navigateTo
();
await
loadSession
(
"
./session/session-optional-params.test.json
"
);
await
loadSession
(
navbar
,
sidenav
,
"
./session/session-optional-params.test.json
"
);
await
browser
.
pause
(
200
);
expect
(
await
navbar
.
getAllCalculatorTabs
().
length
).
toBe
(
1
);
...
...
@@ -187,7 +177,7 @@ describe("ngHyd − save and load sessions", () => {
await
browser
.
pause
(
500
);
// load session
await
loadSession
(
filename
);
await
loadSession
(
navbar
,
sidenav
,
filename
);
await
browser
.
pause
(
500
);
// the displayed calculator is now the loaded one
...
...
@@ -213,7 +203,7 @@ describe("ngHyd − save and load sessions", () => {
// get selects once again since page has been replaced (session load)
selects
=
await
calcPage
.
getAllCalculatorSelects
();
// restore select previous option, other selects presence may depend on it (eg. pressure loss calculator)
await
changeSelectValue
(
selects
[
s
],
ind
);
await
browser
.
pause
(
200
);
...
...
This diff is collapsed.
Click to expand it.
e2e/util.po.ts
+
13
−
0
View file @
cdccaf10
...
...
@@ -71,3 +71,16 @@ export async function openCalculator(id: number, navBar: Navbar, listPage: ListP
await
listPage
.
clickMenuEntryForCalcType
(
id
);
await
browser
.
pause
(
200
);
}
/**
* load a session from JSON file
*/
export
async
function
loadSession
(
navbar
:
Navbar
,
sideNav
:
SideNav
,
path
:
string
)
{
await
navbar
.
clickMenuButton
();
await
browser
.
pause
(
200
);
await
sideNav
.
clickLoadSessionButton
();
await
browser
.
pause
(
200
);
await
sideNav
.
loadSessionFile
(
path
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment