pd

Results 62 comments of pd

My main concern is whether this will somehow mess up plugins like Extra-Stealth by accidently running all of their modifications within the isolated world (ie effectively disabling them)

Yes, it does work (on 1.19.0, will be updating it 2.1.0) - I'm just trying to think of unknown unknowns etc. Do you know of any ways to test Extra-Stealth...

> Haven't looked more closely at isolated worlds so far but is it similar to what happens in Chrome Extensions and Content Scripts? If so then this would have an...

Ok so running the tests in `puppeteer-extra-plugin-stealth` dumps a bunch of these errors with the patch applied: ``` Rejected promise returned by test. Reason: Error { message: `Evaluation failed: ReferenceError:...

I don't believe so because this is the `page.evaluateOnNewDocument` function: ```js /** * @param {Function|string} pageFunction * @param {!Array} args */ async evaluateOnNewDocument(pageFunction, ...args) { const source = helper.evaluationString(pageFunction, ...args);...

> _edit, and then navigating to https://bot.sannysoft.com/ and see if `Webdriver` is missing_ Passed: ![Pass](https://i.snipboard.io/tMSasm.jpg) Is this what you were expecting for webdriver? (edit: FYI that is on the 1.19...

Ok so I can confirm that the patch works as intended. I've made a test for it here that uses Vastel's execution monitoring technique to figure out if the host...

Some of the products such as Datadome have no public "demos" that I know of, so the idea is to build up your tests like this: https://github.com/prescience-data/puppeteer-botcheck

Woo! Amazing to see a PR on this, I was about to start one until I noticed this 🥳

Not sure if this has been resolved within `vue-router` already (might have missed something in the docs), but fwiw this is my current implementation: ```typescript import { createRouter, createWebHistory, NavigationGuard,...