This setting will change the default maximum navigation time of 30 seconds for the following methods:
Height of viewport.
Width of viewport.
A lifecycle hook which you can do something after each step.
this
context points to the Rize
instance.
So you can visit browser and page here.
(Like this.browser
or this.page
)
A lifecycle hook which you can do something after the browser launched.
this
context points to the Rize
instance.
So you can visit browser and page here.
(Like this.browser
or this.page
)
A lifecycle hook which you can do something before each step.
this
context points to the Rize
instance.
So you can visit browser and page here.
(Like this.browser
or this.page
)
A lifecycle hook which you can do something before the browser exit.
this
context points to the Rize
instance.
So you can visit browser and page here.
(Like this.browser
or this.page
)
A lifecycle hook which you can do something before the browser launching.
Generated using TypeDoc
Use an existing puppeteer's browser instance.
(async () => { const browser = await puppeteer.launch() const rize = new Rize({ browser }) })()