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:
commit
60f02ea5fe
1 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue