1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 14:48:08 +02:00

Merge pull request #17940 from timvandermeij/scripting-test

Fix the "must check that invisible fields are made visible" scripting integration test
This commit is contained in:
Tim van der Meij 2024-04-15 14:20:34 +02:00 committed by GitHub
commit 60f02ea5fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2104,9 +2104,10 @@ describe("Interaction", () => {
expect(visibility).withContext(`In ${browserName}`).toEqual("hidden");
await page.click(getSelector("11R"));
// eslint-disable-next-line no-restricted-syntax
await waitForTimeout(10);
await page.waitForFunction(
`${getComputedStyleSelector("7R")}.visibility !== "hidden"`
);
visibility = await page.$eval(
getSelector("7R"),
el => getComputedStyle(el).visibility
@ -2115,6 +2116,9 @@ describe("Interaction", () => {
.withContext(`In ${browserName}`)
.toEqual("visible");
await page.waitForFunction(
`${getComputedStyleSelector("8R")}.visibility !== "hidden"`
);
visibility = await page.$eval(
getSelector("8R"),
el => getComputedStyle(el).visibility