Attributes
Includes Deno configuration
Repository
Current version released
3 years ago
Dependencies
std
Versions
- v1.1.3Latest
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.4.13
- v0.4.12
- v0.4.11
- v0.4.10
- v0.4.9
- v0.4.8
- v0.4.7
- v0.4.6
- v0.4.5
- v0.4.4
- v0.4.3
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.0
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- v0.0.14
- v0.0.13
- v0.0.12
- v0.0.11
- v0.0.10
- v0.0.9
- v0.0.8
- v0.0.7
- v0.0.6
- v0.0.5
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
jw_utils
This is some private utils for my project.
e2e
PUPPETEER_PRODUCT=chrome deno run -A --unstable https://deno.land/x/puppeteer@16.2.0/install.tsuse
import { launch } from "https://deno.land/x/jw_utils@v1.0.3/src/puppeteer.ts";
const browser = await launch({
// headless: false,
// devtools: true,
});
const page = await browser.newPage();
await page.goto("https://www.baidu.com");
await page.screenshot({ path: "example.png" });
await browser.close();
console.info("E2E sucessfully end");