Skip to content

Commit e48563a

Browse files
Merge pull request #20134 from timvandermeij/fix-intermittent-scripting
Fix intermittent failure in the "must check that the computed value is correct" scripting integration test
2 parents f16e0b6 + 48c6253 commit e48563a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/integration/scripting_spec.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2392,9 +2392,7 @@ describe("Interaction", () => {
23922392
pages.map(async ([browserName, page], i) => {
23932393
await waitForScripting(page);
23942394

2395-
const inputSelector = getSelector("33R");
2396-
await page.click(inputSelector);
2397-
await page.type(inputSelector, "7");
2395+
await typeAndWaitForSandbox(page, getSelector("33R"), "7");
23982396
await page.click(getSelector("34R"));
23992397
await page.waitForFunction(
24002398
`${getQuerySelector("35R")}.value === "324,00"`

0 commit comments

Comments
 (0)