Timothy C. Quinn
Timothy C. Quinn
Please try this with google chrome directly as this is a google chrome issue. Simply call the chrome executable and pass the argument. Eg: `chrome.exe -proxy-server=` . You should see...
Below is a test page for verification. To trigger the issue just pass `--log-js-console` which will cause `After Page.goto()` to never get called. ```python import sys, traceback, subprocess, asyncio, tempfile...
This already exists, its just not called zoom. To use, pass `'scale' = ` in page options dict to `page.pdf()`. Eg: `page.pdf({'path': '', 'scale': 1.5})` and this will scale the...
As per Puppeteer [PR 4016](https://github.com/puppeteer/puppeteer/pull/4016/files), `execution_context.py` `_convertArgument()` does not handle `bigint` values correctly. However, that issue is much lower severity and probably should be handled on a separate ticket.
The URL `https://www.programiz.com/javascript/debugging` should, in todays state, generate some JS Errors, and when testing on Linux I get: ``` Started [0119/223735.201135:ERROR:gpu_process_transport_factory.cc(980)] Lost UI shared context. DevTools listening on ws://127.0.0.1:60863/devtools/browser/ee3685f9-b797-47c2-9b1b-9a1009ec7297 [0119/223736.924115:INFO:CONSOLE(1187)]...
I have discovered the fix for this. Users need to add `--enable-logging` and set `--log-level=0` to see console logs on windows platform. Eg: ```python browser: Browser = await launch( headless=True...
Should we look at adding `--enable-logging` automatically as a default option when `dumpio` is set to `True`? I'll be glad to make a pull request for this.
I have discovered that although, `--enable-logging` works in most cases, there are still some edge cases, such as running from an `IIS` process, where the logs are still suppressed. Its...
Is it possible you only experience this error when specifying `--user-data-dir=` to `browser_args`? It appears that when this is set, the launcher will not wait for the Browser process to...
By the way, `await browser.close()` is the correct function to call to clean up the browser instance.