Home > Net >  Puppeteer - Get Information of open tabs like url in nodejs server
Puppeteer - Get Information of open tabs like url in nodejs server

Time:01-29

I want to do a script that opens a web page and that web page should have information of other opened tabs in the browser.

means that nodejs server should have the information of currently all the open tabs. is it possible?

CodePudding user response:

Puppeteer has Browser.pages to list all the tabs.

  • Related