Xavier H.

Results 165 comments of Xavier H.

The proposal here: [field promotion with runtime checking](https://github.com/dart-lang/language/issues/1188) looks like the best solution. We trade a little bit of safety to A LOT MORE convenience. All the examples showing why...

There is this bug https://github.com/flutter/flutter/issues/65067 talking about custom devices. That could also help your idea.

Hi, thanks for the report. I would love a minimal reproduction. The first thing that comes to my mind is that maybe you are not using chromium 92 and you...

Hello @whoraks There is a small change in the devtool protocol in chromium 92.0. It makes it breaking in this library because of null-safety (when a value is absent in...

Hi @Akaatsukhi , if you need to use chrome < v92, the best way is to use version v2.0.0 of this library. I think the official puppeteer library has the...

@Akaatsukhi can you double check the version you are using by looking in your `pubspec.lock`. I think you should use this pub constraint: ```yaml dependencies: puppeteer: 2.0.0 ``` Because `^2.0.0`...

Hi, I would totally accept pull request to add high-level utility functions like the one in "puppeteer-extra". There is already the "stealth" plugin integrated in this repo: https://github.com/xvrh/puppeteer-dart/blob/master/lib/src/plugins/stealth.dart Feel free...

Hi, Thanks for the report. Can you provide a bit more information: - What Dart SDK are you using (version) and how did you install it? Is it Flutter or...

There is some code in the "downloader" that tries to give the permission to the chromium executable: https://github.com/xvrh/puppeteer-dart/blob/master/lib/src/downloader.dart#L47 But maybe it is not enough with latest version of macOS. What...

> ls: .local-chromium/722234/chrome-mac/Chromium.app/Contents/MacOS: No such file or directory So is there no folder at this location? Can you see the `.local-chromium/722234` directory? Normally, when you run `puppeteer.launch` for the first...