Puppeteer-IE icon indicating copy to clipboard operation
Puppeteer-IE copied to clipboard

Headless Internet Explorer NodeJS API inspired by Puppeteer

Results 8 Puppeteer-IE issues
Sort by recently updated
recently updated
newest added

I've tried using the library, but nothing seemed to work after i call `page.goto`. Digging in, I've copied the internal implementation of it to my code to debug and found...

My Code ```js const puppeteer = require('puppeteer-ie'); const screenshot = 'github2.png'; (async () => { const browser = await puppeteer.launch({ headless: false }) const page = await browser.newPage() var url;...

I'm trying to click a submit button in a form, but I fails to click the element and gives the following error codes: `errno: -2147352567 code: -2147024891` Here is my...

In Puppeteer, the `page` object contains the `authenticate()` method (see [Puppeteer documentation](https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pageauthenticatecredentials), but it is not available in this package. Are there any plans to implement this method?

`TypeError: Cannot read property 'execScript' of undefined` On resize the viewport, the following error occurs: ``` { parser: "babylon" } is deprecated; we now treat it as { parser: "babel"...

I got this error when i ran - { parser: "babylon" } is deprecated; we now treat it as { parser: "babel" }. ``` "dependencies": { "connect": "3.6.6", "cucumber": "^5.1.0",...

add keyboard event module with methods below: up, down, press, sendCharater, type

1. [refactor] Execution Context 2. [optimize] upgrade Upstream packages

feature