We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b00a39b commit f0d4c52Copy full SHA for f0d4c52
1 file changed
formule-demo/cypress/e2e/builder.cy.ts
@@ -995,13 +995,17 @@ describe("test basic functionality", () => {
995
.should("exist")
996
.click();
997
998
- cy.get(`input#root${SEP}oneOf${SEP}3${SEP}const`).clearTypeBlur("25");
+ cy.get(`input#root${SEP}oneOf${SEP}3${SEP}const`).clearTypeBlur("25", {
999
+ force: true,
1000
+ });
1001
cy.get(`input#root${SEP}oneOf${SEP}3${SEP}title`).clearTypeBlur("Small");
1002
1003
cy.get(`fieldset#root${SEP}oneOf`)
1004
.find('[data-cy="addItemButton"]')
1005
- cy.get(`input#root${SEP}oneOf${SEP}4${SEP}const`).clearTypeBlur("100");
1006
+ cy.get(`input#root${SEP}oneOf${SEP}4${SEP}const`).clearTypeBlur("100", {
1007
1008
1009
1010
// marks and interaction
1011
cy.getByDataCy("formPreview")
0 commit comments