File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ It returns the internal [browser](https://github.com/GoogleChrome/puppeteer/blob
237
237
const browserless = require (' browserless' )
238
238
239
239
;(async () => {
240
- const browserInstance = await browserless .browser
240
+ const browserInstance = await browserless .browser
241
241
})()
242
242
```
243
243
@@ -249,7 +249,7 @@ It returns a standalone [browser new page](https://github.com/GoogleChrome/puppe
249
249
const browserless = require (' browserless' )
250
250
251
251
;(async () => {
252
- const page = await browserless .page ()
252
+ const page = await browserless .page ()
253
253
})()
254
254
```
255
255
@@ -261,9 +261,8 @@ It performs a smart [page.goto](https://github.com/GoogleChrome/puppeteer/blob/m
261
261
const browserless = require (' browserless' )
262
262
263
263
;(async () => {
264
- const page = await browserless .page ()
265
-
266
- await browserless .goto (page, {
264
+ const page = await browserless .page ()
265
+ await browserless .goto (page, {
267
266
url: ' http://savevideo.me' ,
268
267
abortTypes: [' image' , ' media' , ' stylesheet' , ' font' ]
269
268
})
You can’t perform that action at this time.
0 commit comments