fix(puppeteer): typo

This commit is contained in:
Julien Le Coupanec 2020-03-19 16:00:12 +01:00
parent b994cac48a
commit 10c84a7691
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ page.addStyleTag(options) // Adds a <link
page.authenticate(credentials) // Provide credentials for HTTP authentication.
page.bringToFront() // Brings page to front (activates tab).
page.browser() // Get the browser the page belongs to.
page.browserContext( // Get the browser context that the page belongs to.
page.browserContext() // Get the browser context that the page belongs to.
page.click(selector[, options]) // This method fetches an element with selector, scrolls it into view if needed, and then uses page.mouse to click in the center of the element. If there's no element matching selector, the method throws an error.
page.close([options]) // Close the page
page.content() // Gets the full HTML contents of the page, including the doctype.