Commit 785e0281 authored by Grand Francois's avatar Grand Francois
Browse files

fix(e2e): failing test

refs #620
Showing with 2 additions and 1 deletion
+2 -1
......@@ -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);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment