Browse Source

cypress: skip parsing special character sequences and type the text exactly as written

pull/1979/head
Wing-Kam Wong 2 years ago
parent
commit
8b6b2fd351
  1. 4
      scripts/cypress/integration/common/3b_formula_column.js

4
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")

Loading…
Cancel
Save