puppeteer-jquery icon indicating copy to clipboard operation
puppeteer-jquery copied to clipboard

Fluent jquery integration for puppeteer

Results 3 puppeteer-jquery issues
Sort by recently updated
recently updated
newest added

Bumps [undici](https://github.com/nodejs/undici) from 5.7.0 to 5.26.3. Release notes Sourced from undici's releases. v5.26.3 No release notes provided. v5.26.2 Security Release, CVE-2023-45143. v5.26.1 What's Changed Fix publish undici-types once and for...

dependencies

``` playwright-jquery: 0.3.3 playwright(core): 1.22.1 ``` Code like this ``` typeScript await page.locator("text=fooBar").evaluateAll((elements) => { elements.forEach((element) => { // Some jQuery code jQuery("body")... }); }); ``` Will produce an error...

Hi how do you click an element added dynamically to the page? For example, if an element is added via JavaScript after the page is loaded the code **page.jQuery(selector).trigger("click")** doesn't...