Xavier H.
Xavier H.
This seems reasonable, no problem to accept a pull request with a feature that matches the original puppeteer 👍
I think you should opt-out of `sandbox` mode in the xcode project. Something like that in your Profile.entitlements: ``` com.apple.security.app-sandbox ```
Can you provide a small reproducible example?
It is known that you cannot download and launch a chromium binary in Android. See the README: https://github.com/xvrh/puppeteer-dart#limitations-with-flutter
Can you provide a way to reproduce? Just tried something like that and it seems to work as expected: ```dart import 'package:puppeteer/puppeteer.dart'; void main() async { var browser = await...
In your `evaluateJs` implementation in wp_client_desktop, can you wrap the source inside a function? ```dart var result = await page?.evaluate('() => $source'); ```
> do you think this can be because of large data or large list or something unable to parse in json Can you try to debug by taking only some...
I've had some success by creating a "user data directory" with a `Preferences` file. And putting some preferences like `currentDockState: bottom`. Like that: ```dart import 'dart:convert'; import 'dart:io'; import 'package:path/path.dart'...
Yes it should. To prevent incompatibility issue, you probably want to use the version `2.16.0` of this library. Post here if you have any specific error.
@ninhngadev it's **possible** that the latest version of this library works with chrome 107. But it's also possible that there is a breaking change in the protocol between v107 and...