mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
docs(examples): update selector for search example (#6471)
This commit updates the selector used in some examples as it no longer matched the target page’s DOM. Fixes #6470, fixes #5071.
This commit is contained in:
parent
49f25e2412
commit
9275653130
@ -30,7 +30,7 @@ const puppeteer = require('puppeteer');
|
|||||||
await page.goto('https://developers.google.com/web/');
|
await page.goto('https://developers.google.com/web/');
|
||||||
|
|
||||||
// Type into search box.
|
// Type into search box.
|
||||||
await page.type('#searchbox input', 'Headless Chrome');
|
await page.type('.devsite-searchbox input', 'Headless Chrome');
|
||||||
|
|
||||||
// Wait for suggest overlay to appear and click "show all results".
|
// Wait for suggest overlay to appear and click "show all results".
|
||||||
const allResultsSelector = '.devsite-suggest-all-results';
|
const allResultsSelector = '.devsite-suggest-all-results';
|
||||||
|
@ -30,7 +30,7 @@ const puppeteer = require('puppeteer-firefox');
|
|||||||
await page.goto('https://developers.google.com/web/');
|
await page.goto('https://developers.google.com/web/');
|
||||||
|
|
||||||
// Type into search box.
|
// Type into search box.
|
||||||
await page.type('#searchbox input', 'Headless Chrome');
|
await page.type('.devsite-searchbox input', 'Headless Chrome');
|
||||||
|
|
||||||
// Wait for suggest overlay to appear and click "show all results".
|
// Wait for suggest overlay to appear and click "show all results".
|
||||||
const allResultsSelector = '.devsite-suggest-all-results';
|
const allResultsSelector = '.devsite-suggest-all-results';
|
||||||
|
Loading…
Reference in New Issue
Block a user