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

fix(e2e): parallel structure submergence warning is also displayed along with submergence error

refs #614
parent 80e36eb0
No related branches found
No related tags found
No related merge requests found
......@@ -335,6 +335,17 @@ export class CalculatorPage {
return style.indexOf("color: red;") !== -1;
}
/**
* return true if the nth log entry is a warning
*/
async nthLogEntryIsWarning(n: number) {
const errs = element.all(by.css("log-entry"));
const e = errs.get(n);
const icon = e.element(by.css("div mat-icon"));
const style = await icon.getAttribute("style");
return style.indexOf("color: orange;") !== -1;
}
async clickSaveCalcButton() {
await scrollPageToTop();
return await element(by.css("#save-calc")).click();
......
......@@ -61,7 +61,6 @@ describe("Parallel structures - ", () => {
});
it("check submergence error", async () => {
debugger
await startPage.navigateTo();
await loadSession(navBar, sideNav, "./session/session-erreur-ennoiement-614.json");
......@@ -77,9 +76,10 @@ describe("Parallel structures - ", () => {
await browser.sleep(500);
// check error message in log
expect(await calcPage.nbLogEntries()).toBe(1);
expect(await calcPage.nbLogEntries()).toBe(2);
expect(await calcPage.nthLogEntryIsError(0)).toBe(true);
expect(await calcPage.nthLogEntryIsWarning(0)).toBe(true);
expect(await calcPage.nthLogEntryIsError(1)).toBe(true);
// second calculator
......@@ -91,8 +91,9 @@ describe("Parallel structures - ", () => {
await browser.sleep(500);
// check error message in log
expect(await calcPage.nbLogEntries()).toBe(1);
expect(await calcPage.nbLogEntries()).toBe(2);
expect(await calcPage.nthLogEntryIsError(0)).toBe(true);
expect(await calcPage.nthLogEntryIsWarning(0)).toBe(true);
expect(await calcPage.nthLogEntryIsError(1)).toBe(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