Skip to content
Snippets Groups Projects
Commit 785e0281 authored by François Grand's avatar François Grand
Browse files

fix(e2e): failing test

refs #620
parent 43e97fa1
No related branches found
No related tags found
2 merge requests!225Release v4.17.0,!223Resolve "PreBarrage: Changement intempestif des paramètres d'ouvrage au changement d'équation"
......@@ -32,7 +32,7 @@ describe("Check results are reset after application settings modification - ", (
async function runTestWithParameter(param: string, val1: number, val2: number) {
// set starting compute precision
const input = await prefPage.getInputFromName(param);
let input = await prefPage.getInputFromName(param);
await input.clearValue();
await input.setValue(val1.toString());
......@@ -57,6 +57,7 @@ describe("Check results are reset after application settings modification - ", (
await browser.pause(200);
// modify compute precision
input = await prefPage.getInputFromName(param);
await input.setValue(val2.toString());
await browser.pause(500);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment