Skip to content

Commit

Permalink
Merge pull request #318 from david-tejada/update-puppeteer
Browse files Browse the repository at this point in the history
Update dependency puppeteer to ^23.4.1
  • Loading branch information
david-tejada authored Sep 26, 2024
2 parents ca5b91b + 4fe1f25 commit 0cafd81
Show file tree
Hide file tree
Showing 3 changed files with 450 additions and 288 deletions.
4 changes: 2 additions & 2 deletions e2e/keyboardClicking.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@ describe("With hints in other frames", () => {

test("Typing one hint character marks the hint with a border 1px wider and opacity 0.7 and resets after typing the second character", async () => {
const frame = await page.$("iframe");
const contentFrame = (await frame!.contentFrame())!;
const contentFrame = await frame!.contentFrame();
await testKeyboardClickingHighlighting(contentFrame);
});

test("Typing the hint characters clicks the link", async () => {
const frame = await page.$("iframe");
const contentFrame = (await frame!.contentFrame())!;
const contentFrame = await frame!.contentFrame();
await contentFrame.waitForSelector(".rango-hint");

keyTap("a");
Expand Down
Loading

0 comments on commit 0cafd81

Please sign in to comment.