import { Page } from "https://deno.land/x/fresh@1.4.3/tests/deps.ts";
Examples
Example 1
Example 1
const frame = await page.waitForFrame(async frame => {
return frame.name() === 'Test';
});
import { Page } from "https://deno.land/x/fresh@1.4.3/tests/deps.ts";
Example 1
const frame = await page.waitForFrame(async frame => {
return frame.name() === 'Test';
});