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
@ -2104,9 +2104,10 @@ describe("Interaction", () => {
|
|||||||
expect(visibility).withContext(`In ${browserName}`).toEqual("hidden");
|
expect(visibility).withContext(`In ${browserName}`).toEqual("hidden");
|
||||||
|
|
||||||
await page.click(getSelector("11R"));
|
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(
|
visibility = await page.$eval(
|
||||||
getSelector("7R"),
|
getSelector("7R"),
|
||||||
el => getComputedStyle(el).visibility
|
el => getComputedStyle(el).visibility
|
||||||
@ -2115,6 +2116,9 @@ describe("Interaction", () => {
|
|||||||
.withContext(`In ${browserName}`)
|
.withContext(`In ${browserName}`)
|
||||||
.toEqual("visible");
|
.toEqual("visible");
|
||||||
|
|
||||||
|
await page.waitForFunction(
|
||||||
|
`${getComputedStyleSelector("8R")}.visibility !== "hidden"`
|
||||||
|
);
|
||||||
visibility = await page.$eval(
|
visibility = await page.$eval(
|
||||||
getSelector("8R"),
|
getSelector("8R"),
|
||||||
el => getComputedStyle(el).visibility
|
el => getComputedStyle(el).visibility
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user