diff --git a/e2e/calculator.po.ts b/e2e/calculator.po.ts
index 3dda3f42d72b7d0ecfb0a98879602d15212072c2..1edff79f83ad3391330cd1fa6f4453999dd5a94b 100644
--- a/e2e/calculator.po.ts
+++ b/e2e/calculator.po.ts
@@ -175,19 +175,16 @@ export class CalculatorPage {
       // check fixed results
       const frt = this.getFixedResultsTable();
       if (await frt.isPresent() && await frt.isDisplayed()) {
-        console.log("==============> Fixed found !");
         ok = ok && await this.allRowsHaveValidResults(frt);
       }
       // check variated results
       const vrt = this.getVariatedResultsTable();
       if (await vrt.isPresent() && await vrt.isDisplayed()) {
-        console.log("==============> Var found !");
         ok = ok && await this.allRowsHaveValidResults(vrt);
       }
       // check PAB results
       const prt = this.getPabResultsTable();
       if (await prt.isPresent() && await prt.isDisplayed()) {
-        console.log("==============> Pab found !");
         ok = ok && await this.allRowsHaveValidResults(prt, true);
       }
     }