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

This commit is contained in:
Wing-Kam Wong
2022-05-17 11:51:35 +08:00
parent c62acc06bc
commit 8b6b2fd351

View File

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