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

test(e2e): check that an added structure has empty fields after the first structure is modified

refs #536
parent ec828fee
No related branches found
No related tags found
1 merge request!136Resolve "Lois d'ouvrages: les champs ne sont pas vide à l'ajout d'un ouvrage"
......@@ -163,4 +163,23 @@ describe("ngHyd - check that created/cloned structures have empty fields - ", ()
const emptys = [true, true, true];
await checkFields(inputIds, emptys);
});
it("when a structure is modified (input) and then a structure is added", async () => {
await setup();
// fill
const inp = calcPage.getInputById("0_ZDV");
await inp.clear();
await inp.sendKeys("1");
// copy structure
const addStruct = calcPage.getAddStructureButton();
await addStruct.click();
await browser.sleep(200);
// check empty fields
const inputIds = ["1_ZDV", "1_L", "1_W", "1_CdGR"];
const emptys = [true, true, true, false];
await checkFields(inputIds, emptys);
});
});
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