From 8b6b2fd3519d83b71ed38adaab9f693a40f331a4 Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Tue, 17 May 2022 11:51:35 +0800 Subject: [PATCH] cypress: skip parsing special character sequences and type the text exactly as written --- scripts/cypress/integration/common/3b_formula_column.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/cypress/integration/common/3b_formula_column.js b/scripts/cypress/integration/common/3b_formula_column.js index d3c9ef69c6..9fba2ab366 100644 --- a/scripts/cypress/integration/common/3b_formula_column.js +++ b/scripts/cypress/integration/common/3b_formula_column.js @@ -61,7 +61,7 @@ export const genTest = (apiType, dbType) => { .contains("Formula") .parent() .click() - .type(formula) + .type(formula, { parseSpecialCharSequences: false }) .click(); // click on Save @@ -115,7 +115,7 @@ export const genTest = (apiType, dbType) => { .parent() .find("input") .clear() - .type(newFormula) + .type(newFormula, { parseSpecialCharSequences: false }) .click(); cy.get(".nc-col-create-or-edit-card")