I have started my automation browser scripts in 2006, far before Chrome Devtools Protocol was available, even before Chrome. I had maintained this private project for more than a decade, and during this period this automation plateforme evolved quickly get based on JQuery selector to identify elements. Now I'm trying to merge my stuff with the open source automation mainstream.
This glue code is developed in Typescript, because I like Typescript and it evolves very fast. Typescript allows you to use JQuery into your remote browser without conflict, and uses the IDE's code completion as much as possible.
This puppeteer does not expose many of his classes, so to register my extension, I need an instance of Page
to patch its prototype.
so there are two ways to setup this jquery:
- Using at least one time the
function pageExtend(page: Page): PageEx
- Calling
function setupJQuery(): Promise<BrowserEx>
once that will create and enable jQuery in an headless browser. The JQuery extra code won't be add to any of your page until you use it.
Handle Page
instance as PageEx
, and get access to page.jQuery(selector: string)
let browser = await launch({headless: true});
let pageOrg = await browser.newPage();
let page = pageExtand(pageOrg);
// append a <H1>
await page.jQuery('body').append(`<h1>Title</h1>`);
// get the H1 value
let title = await page.jQuery('h1').text();
// chain calls
let text = await page.jQuery('body button:last')
.closest('div')
.find('h3')
.css('color', 'yellow')
.parent()
.find(':last')
.text();
import { pageExtend, PageEx } from 'puppeteer-jquery'
import puppeteer from 'puppeteer-extra';
import StealthPlugin from 'puppeteer-extra-plugin-stealth'
puppeteer.use(StealthPlugin())
const page1 = 'https://recaptcha-demo.appspot.com/recaptcha-v3-request-scores.php';
const main = async () => {
const browser = await puppeteer.launch({ headless: false });
const page = await browser.newPage();
const pageEx: PageEx = pageExtend(page);
await page.goto(page1, { waitUntil: 'domcontentloaded' }); // 'networkidle0'
const r1 = await pageEx.waitForjQuery('pre.response:contains("score")');
console.log(await r1[0].boundingBox());
await page.screenshot({ path: 'testresult.png', fullPage: true })
const result = await pageEx.jQuery('pre.response').text();
console.log('score is:' + JSON.parse(result).score);
await page.waitFor(500);
await page.close();
await browser.close();
}
main();
You may also install @types/jquery dependence for more complex JQuery task, but in this case always use jQuery
method, do not use $
sortcut, the bundeled jQuery will be renamed before being injected. the injection process rename fullname jQuery
to the rigth value before injections.
- V1.8 change waitForjQuery return type to ElementHandle[]
- V1.7 add waitForjQuery
- V1.6 update doc
- melbourne2991/jquery-puppeteer Simple JQuery integration, by adding a
page.evalJquery()
. - berstend/puppeteer-extra A plugin proposal standard for puppeteer (not used by the way).