Skip to content
Snippets Groups Projects
Commit d5233071 authored by mathias.chouet's avatar mathias.chouet
Browse files

Removd debug message

parent 461c30f5
No related branches found
No related tags found
No related merge requests found
...@@ -175,19 +175,16 @@ export class CalculatorPage { ...@@ -175,19 +175,16 @@ export class CalculatorPage {
// check fixed results // check fixed results
const frt = this.getFixedResultsTable(); const frt = this.getFixedResultsTable();
if (await frt.isPresent() && await frt.isDisplayed()) { if (await frt.isPresent() && await frt.isDisplayed()) {
console.log("==============> Fixed found !");
ok = ok && await this.allRowsHaveValidResults(frt); ok = ok && await this.allRowsHaveValidResults(frt);
} }
// check variated results // check variated results
const vrt = this.getVariatedResultsTable(); const vrt = this.getVariatedResultsTable();
if (await vrt.isPresent() && await vrt.isDisplayed()) { if (await vrt.isPresent() && await vrt.isDisplayed()) {
console.log("==============> Var found !");
ok = ok && await this.allRowsHaveValidResults(vrt); ok = ok && await this.allRowsHaveValidResults(vrt);
} }
// check PAB results // check PAB results
const prt = this.getPabResultsTable(); const prt = this.getPabResultsTable();
if (await prt.isPresent() && await prt.isDisplayed()) { if (await prt.isPresent() && await prt.isDisplayed()) {
console.log("==============> Pab found !");
ok = ok && await this.allRowsHaveValidResults(prt, true); ok = ok && await this.allRowsHaveValidResults(prt, 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