*Timestamps* 0:07 introduction (Eric Bidelman) 1:17 agenda 1:38 Intro to Headless Chrome 3:00 What does it unlock for us? 4:54 [Pyramid of Puppeteer] Chrome DevTools Protocol (CDP) 5:45 [Pyramid of Puppeteer] Puppeteer w/ usage examples 10 Things you can do (your scripts at the top of Pyramid of Puppeteer) 9:02 0. Quick Intro 9:30 1. *Pre-rendering* *JS* *sites* 12:46 1.1 Performance Comparison Demo 13:51 1.2 4 Pre-rendering Optimization tips 17:29 2. *Is* *Lazy-loading* *paying* *off?* 19:22 3. *A/B* *Testing* 21:09 4. *Catch* *issues* *for* *the* *Google* *crawler* 22:54 5. *Create* *custom* *PDFs* 24:20 6. *Make* *your* *browser* *talk* 26:28 7. *Test* *a* *Chrome* *extension* 28:10 8. *Crawl* *a* *SPA* 29:13 9. *Verify* *service* *worker* *offline* *caching* 30:52 10. *Procrastinate* (showcase touch/keyboard API) 31:39 Closing Remarks
@AV-fd5wn4 жыл бұрын
Thank youu :)
@kvenk0014 жыл бұрын
You're doing God's work here
@jwgmail3 жыл бұрын
awesome
@AbdallaElmedny6 жыл бұрын
I have been using puppeteer to automate the process of finding a new apartment and it has been such a great experience. The API is really well documented and its really straight forward to use.
@mrbigsmizzy3 жыл бұрын
Having a hard time with this. I need to do the same thing. Are you able to give a step by step please?
@camelCaseFTW6 жыл бұрын
24:55 "The rise of the machines has begun" _me nervously laughing_
@dev.syedmh6 жыл бұрын
This is cool and all, but at 9:43 he put his words where his mouth is, and i think thats the greatest thing of all.
@anamuslimun3 жыл бұрын
headless chrome with puppeteer is a bliss
@Denzelzeldi4 жыл бұрын
in case someone is trying the 2nd example of server.mjs, the example is missing a line of code. If your index.html is located in the root folder of the server, add : app.use(express.static('.'))
@iamtheiconoclast35 жыл бұрын
That's not a pyramid, mate; that's a triangle.
@chibiebil5 жыл бұрын
it can still be a pyramid from an orthographic point of view :p
@sickodelic15 жыл бұрын
ROFL
@zorrolondres3 жыл бұрын
14:35 “How to wait until pages get partly or completely loaded”
@21Million4 жыл бұрын
Headless Chrome + Karate + Gatling is the bomb.
@leeroyescu6 жыл бұрын
22:54 *Creating custom PDFs* I would very much like support for adding metadata to PDFs, like you can with PDFKit. For storing PDF page snapshots it would be great to have them associated with searchable metadata (like Title, Author, Subject, Keywords, Comments). Where should I create the feature request? Puppeteer? SkiaPDF? Chromium?
@nguyentrongtrinh16783 жыл бұрын
how can i set background image add use margin @page for each page in file pdf, i can margin top and bottom for each pages but can't set background image, Please help me, Thanks!
@davidconnelly6 жыл бұрын
How does it compare to Nightmare?
@dougb704 жыл бұрын
apparently it made it obsolete
@mainguyenvu92055 жыл бұрын
I do not understand why this approach does not wait the whole browser to load? Because server side have to do all the work before res.send to the client.
@marchino35774 жыл бұрын
Hi, Can I insert script that using puppeteer library in a tag of a web page?
@geooot6 жыл бұрын
What about concurrency? Is it really ok to call a puppetier browser in an enpoint that can be called by multiple clients at the same time?
@sharon0x16 жыл бұрын
why would not be? just create a module which exposes one instance on headless chrome. Now you can create as many tabs as your system can handle. Or, more realistically, you can create a queue for rendering tasks, and reause let's say 10 tabs, to render the queued requests.
@temitopes70666 жыл бұрын
i dont think it is a major issue if you put the caching in place
@torch24246 жыл бұрын
Such a genius idea to SSR with puppeteer. Great work!
@wizardOfRobots5 жыл бұрын
I don't understand tho...why ssr with puppeteer when you can ssr the whole thing?
@testpassion13384 жыл бұрын
Would like to run with it's "head full", i n incognito mode, and would like to save the interactive timeline report from the performance tab as is. Can this be done? Where can I find a video that shows this?
@vigd62984 жыл бұрын
why he didnt use chromebook?
@AmeerHamza-cy6km5 жыл бұрын
help me.. i want to use puppeteer to fetch a page and press a specific button on the page..how can i do that?
@MikeNugget4 жыл бұрын
Still can't easily download files with Puppeteer and without crunches.
@tamduong17226 жыл бұрын
I want to import expression in control panel is not it?
@cappie20005 жыл бұрын
So we've gone from PHP or server-side nodejs that renders all this directly to HTML to a client-side language that should create this, but instead, we do this server side using a headless browser which scales in much the same way that a banana doesn't, all instead of a fast script interpreter, and then send it to the client to be handled as static HTML.. only to have it all in 1 language? is that really the only reason?! the lazyness of being able to use one language?
@cindysi636 жыл бұрын
Very cool tech that I didn’t know existed. Thanks for sharing. Now to learn more about this
@manjurulkhan230811 ай бұрын
10:38 FIrst code sample
@ridrogoxd5 жыл бұрын
I tried this the other day, but I couldn't bypass Cloudflare DDOS protection, don't know why...
@ishubagga45795 жыл бұрын
First of all many thanks for uploading the info about headless chrome. Problem : I am trying to access a password protected url which loads pdf. This works absolutely fine in normal chrome browser, however, in Chrome headless mode because of some reason the PDF never gets loaded. Need your help to approach this problem. It would really be a BIG help if you can help me in anyways… Many thanks to you in advance
@thequizclassroom6 жыл бұрын
can we use pupeeteer for cross browsers as silenium ?
@karthickeayan6 жыл бұрын
Puppeteer works only with Chromium or Chrome. However, many teams only run unit tests with a single browser (e.g. PhantomJS). In non-testing use cases, Puppeteer provides a powerful but simple API because it's only targeting one browser that enables you to rapidly develop automation scripts. Puppeteer bundles the latest versions of Chromium.
@chrischoir35945 жыл бұрын
"Kinda cool"..."Really Awesome !!!"
@waliddu625 жыл бұрын
headless chrome is the best, I used lot of headless browser and lot of them don't support some javascript sometime I couldnt load a page but with chromium you can load any web site I never had any issue to load pages or with the javascript, you can just do everything even watching a youtube video ^^, all you do with chrome you can do with headless chrome and you can run it on linux.I have been using pupeeteer for a moment and it's the best headless browser, just thank a lot for making this.
@TSulemanW5 жыл бұрын
Nicely Explaination
@anonymenet5 жыл бұрын
kzbin.info/www/bejne/opm9gHmLjpaqm9E The presentation mentioned a protocol monitor panel there. Its not in the menu in Chrome 72, even when Im in the right context (localhost:9222). Did it get remove ?
@leonardolourencocrespilhoh5115 жыл бұрын
Yes, it was removed. I saw this protocol monitor pannel for a while in a early version. Don't remember exactly when... maybe 8 months ago.... maybe...
@trialusert6 жыл бұрын
Can you simulate mouse clicks at a specific location?
@leonardolourencocrespilhoh5115 жыл бұрын
With puppeteer you can click on Css Selectors (pptr.dev/#?product=Puppeteer&version=v1.13.0&show=api-pageclickselector-options) or you can use the DevTools Protocol Input.dispatchMouseEvent method to specify a (x,y) location. See puppeteer's CDPSession class for examples of how to use DevTools Protocol with puppeteer.
@SouravBagchigoogleplus4 жыл бұрын
Sad thing is, this is only for node.js
@emilyfukuyama21704 жыл бұрын
nothing works -
@familyechev6 жыл бұрын
Nice video, Does Puppeteer-SSR is more effective than TemplateEngines-SSR ?. My point is, template engines do not require for taking care of filtering requests, and also you could inject data on templates without calling external services. I like the puppet-ssr approach but just asking for any advantages over template engines ssr.
@paulosandsten9833 жыл бұрын
I wonder why we even care about 3g for most part. It’s like the same old discussion to support IE but now it’s network. If your page requires animations and high-performance. Seriously, don’t even think about what is better for the first paint. Think of what is the best overall. This first paint strategy is Google dogma
@rk1only4u36 жыл бұрын
Thank you
@chrischoir35945 жыл бұрын
"Basically"
@kaypakaipa85596 жыл бұрын
If puppetier is the way, then why not use PHP as it does server side rendering. Personally i love JS, but are we not reinventing the wheel in another language here.
@Venistro6 жыл бұрын
You can also control the headless chrome with PHP, via websockets. So someone could reprogram Puppeteer in PHP or is there something against?
@shifteleven6 жыл бұрын
Because you can re-use the JS that you wrote for the client to work for server-side rendering. You don't have to duplicate the logic in two places. Furthermore, Puppeteer gives you more than just SSR - you can take screenshots, make PDFs. Those things you cannot do with just PHP (of course you could use PHP and websockets to control a headless chrome, but I sense that's not the point you're trying to make, correct me if I'm wrong). That said, using a bunch of headless chrome instances might use more computing resources than you want, at which point PHP or Go or any other language would work. Tons of ways to do this, it's all dependent on your requirements.
@kaypakaipa85596 жыл бұрын
Stephan Bijzitter i guess the benefit here is utilizing one language. Thanks
@rckd59036 жыл бұрын
Nope. The benefit is that you can build apps with a great user experience (=pure js frontend) without the disadvantages (in terms of seo, ssr complexity and initial page load).
@cappie20005 жыл бұрын
@@rckd5903 but wait.. isn't all the javascript removed from the page when it's sent to the browser... soooo.. the next request HAS to go through that headless monstrosity again?
@patrickriggen7196 жыл бұрын
So far ahead of me automation
@NolaanOne6 жыл бұрын
Am I the only one feeling web developers spent 20 years slowing down the internet only to realize that all of this wasn't necessary in the first place. And now the pyroman is the fireman. We'll soon have to pay Google to generate html. Just like Maps. 😔
@cappie20005 жыл бұрын
I can't come up with a reason why all this shit is needed when you have Varnish and a random scripting language like PHP 7.2, or HELL.. server-side NODEJS even... just sitting there that can render this stuff at 5000 hits per second instead of 4...
@avimehenwal4 жыл бұрын
Nice ...
@psilocyberspaceman6 жыл бұрын
Yes. Let's use eager Promises instead of lazy Futures. And, wow, we also get a then then then then. Bravo.
@sivapalaniappan7012 жыл бұрын
Great
@elgs19806 жыл бұрын
WOW! WOW! WOW!
@cammeymokmon82806 жыл бұрын
good
@KaiBuskirk4 жыл бұрын
LUV!
@jackisjack_bysun6 жыл бұрын
still too slow in x2...
@epk10015 жыл бұрын
How to download the files in chrome headless mode in automation.... Can you please help me on this
@spot89614 жыл бұрын
too long...
@AmeerHamza-cy6km5 жыл бұрын
puppeteer is opening doors to alot of hacking methods and will be banned i think..........