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

fix(e2e): solver: wrong 'empty field' option value

refs #601
parent 56759310
No related branches found
No related tags found
2 merge requests!225Release v4.17.0,!203Resolve "Solveur multimodule: le module existe toujours après suppression"
......@@ -377,8 +377,8 @@ describe("Solveur - nghyd#601 without empty fields option", () => {
});
it(" with empty fields option, check selecting a target module does not fill inputs", async () => {
// disable evil option "empty fields on module creation"
await prefPage.setEmptyFields(false);
// enable evil option "empty fields on module creation"
await prefPage.setEmptyFields(true);
await browser.sleep(200);
await navBar.clickNewCalculatorButton();
......@@ -399,7 +399,7 @@ describe("Solveur - nghyd#601 without empty fields option", () => {
// select other target module
const ntc = calcPage.getSelectById("select_target_nub");
await calcPage.changeSelectValue(ntc, 1);
await changeSelectValue(ntc, 1);
// check target value input is empty
await calcPage.checkEmptyInput("Ytarget", true);
......
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