mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
docs: fix ts error in example code (#10138)
This commit is contained in:
parent
510d9717be
commit
e6354965e8
@ -163,7 +163,7 @@ import puppeteer from 'puppeteer';
|
|||||||
const textSelector = await page.waitForSelector(
|
const textSelector = await page.waitForSelector(
|
||||||
'text/Customize and automate'
|
'text/Customize and automate'
|
||||||
);
|
);
|
||||||
const fullTitle = await textSelector.evaluate(el => el.textContent);
|
const fullTitle = await textSelector?.evaluate(el => el.textContent);
|
||||||
|
|
||||||
// Print the full title
|
// Print the full title
|
||||||
console.log('The title of this blog post is "%s".', fullTitle);
|
console.log('The title of this blog post is "%s".', fullTitle);
|
||||||
|
@ -163,7 +163,7 @@ import puppeteer from 'puppeteer';
|
|||||||
const textSelector = await page.waitForSelector(
|
const textSelector = await page.waitForSelector(
|
||||||
'text/Customize and automate'
|
'text/Customize and automate'
|
||||||
);
|
);
|
||||||
const fullTitle = await textSelector.evaluate(el => el.textContent);
|
const fullTitle = await textSelector?.evaluate(el => el.textContent);
|
||||||
|
|
||||||
// Print the full title
|
// Print the full title
|
||||||
console.log('The title of this blog post is "%s".', fullTitle);
|
console.log('The title of this blog post is "%s".', fullTitle);
|
||||||
|
@ -163,7 +163,7 @@ import puppeteer from 'puppeteer';
|
|||||||
const textSelector = await page.waitForSelector(
|
const textSelector = await page.waitForSelector(
|
||||||
'text/Customize and automate'
|
'text/Customize and automate'
|
||||||
);
|
);
|
||||||
const fullTitle = await textSelector.evaluate(el => el.textContent);
|
const fullTitle = await textSelector?.evaluate(el => el.textContent);
|
||||||
|
|
||||||
// Print the full title
|
// Print the full title
|
||||||
console.log('The title of this blog post is "%s".', fullTitle);
|
console.log('The title of this blog post is "%s".', fullTitle);
|
||||||
|
Loading…
Reference in New Issue
Block a user