Stop Using Selenium or Playwright for Web Scraping

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ธ.ค. 2024

ความคิดเห็น • 61

  • @jonathanfriz4410
    @jonathanfriz4410 18 วันที่ผ่านมา +2

    My man John now with sponsors. Happy for you. Long time no read!. Hope you the best. Awesome content like usual.

  • @hydrosis-v3k
    @hydrosis-v3k 2 หลายเดือนก่อน +7

    holy shit, literally the first proper guide to a decent alternative to web automation.

  • @AHMED_Mostafa_xd
    @AHMED_Mostafa_xd 14 วันที่ผ่านมา +1

    Thank you, I have been looking for an excellent addition for more than two weeks, but I did not find it until I watched your video ❤❤❤❤

  • @andydataguy
    @andydataguy หลายเดือนก่อน +5

    Your timing could not have been more perfect on this video brother. Thank you!! 🙌🏾💜
    Idk if you have a community or program, but as soon as i get hired im buying it to help support you.
    As a selftaught dev (formerly digital marketer) your videos were vital in being able to finally wrap my head around data extraction

  • @SigKappel
    @SigKappel 2 หลายเดือนก่อน +2

    Thanks John for this update. I have some mission critical scrapes for inventory and this will come in handy when I need to be more stealth.

  • @zvnman
    @zvnman หลายเดือนก่อน +1

    Thanks for the kind advice! In gratitude to all my clients, I give your referral link)) Keep going bro!!!

  • @frankcasanova2132
    @frankcasanova2132 2 หลายเดือนก่อน +3

    JUST WHAT I NEEDED WHEN I NEEDED IT

  • @EnglishRain
    @EnglishRain หลายเดือนก่อน +1

    Thank you i didn't know Playwright isn't really recommended for scraping

  • @kinuthiamatata6040
    @kinuthiamatata6040 2 หลายเดือนก่อน +9

    working with a website that uses WebSocket connections instead of traditional XHR/fetch requests. What's the best way to intercept traffic for scraping?

    • @JohnWatsonRooney
      @JohnWatsonRooney  2 หลายเดือนก่อน +11

      honestly I haven't got a lot of experience with websockets, but i know you can connect to them via requests/httpx but i dont have any practical exp sorry

    • @mehdikaraouet7980
      @mehdikaraouet7980 2 หลายเดือนก่อน

      ​@JohnWatsonRooney all the respect for honesty and humbleness ❤

    • @eyayawb
      @eyayawb 2 หลายเดือนก่อน +1

      Reverse engineer the data transfer process. I successfully reverse-engineered an app that pulls data from a Firebase database using a WebSocket connection. I used websockets package to replicate the communication pattern.

  • @realitywords-17398
    @realitywords-17398 หลายเดือนก่อน

    Great Man.......... You are struggling a lot...... Keep your morale high!

  • @ibrahimmudassar6563
    @ibrahimmudassar6563 17 วันที่ผ่านมา +2

    if I ran this on a VPS, hwo would the steps differ? I'm currently having trouble running playwright in a cli only VPS

  • @AHMED_Mostafa_xd
    @AHMED_Mostafa_xd 14 วันที่ผ่านมา

    Is it discovered that it is a robot, because there are sites that block it

  • @dragon3602010
    @dragon3602010 2 หลายเดือนก่อน +3

    so when choosing "nodriver" instead of "SeleniumBase" ?
    thanks

    • @JohnWatsonRooney
      @JohnWatsonRooney  2 หลายเดือนก่อน +1

      Try both and see which works best for what you are trying to do

  • @Analyse_US
    @Analyse_US 2 หลายเดือนก่อน +1

    This is gold! Thanks.

  • @mvace
    @mvace 2 หลายเดือนก่อน +1

    Thanks John, I was struggling to login to one website for a few days now. It was detecting my automation script. I used selenium-driverless and it works great now. So perfect timing with this video! Do you have any tips on how to handle uploads with selenium-driverless? After I log in to the website I need to upload a file from my local machine but the upload seems to be working differently for selenium-driverless compared to selenium. There is not much in the documentation regarding uploads in selenium-driverless.

  • @gamehubler
    @gamehubler หลายเดือนก่อน

    I learn a lot from your video explanations and like your style of sharing it with us, and comes with the fresh air because it is up to date.
    Can you maybe bring some more complex web scraping examples? Mostly the pages in your showcase were viewable directly or with a login.
    Would it be possible to bring some examples in the future with GQL sites, it is more difficult to solve these types.

  • @graczew
    @graczew 2 หลายเดือนก่อน +1

    Thanks, mate. This is really helpful.

  • @Steve-lu6ft
    @Steve-lu6ft 9 วันที่ผ่านมา

    Will this method work when the information you want is in Network > Doc > Name (we select what we want here)... But it's only organized nicely as text in the Preview tab?

  • @abdelkoddouslaarif1295
    @abdelkoddouslaarif1295 หลายเดือนก่อน

    okay! this is all good and well, impressive even, but I wanna ask a slightly different question, how do you stay updated with the new alternatives that come out? you always seem to know when something better is out or if something old isn't as reliable anymore or not being maintained... what tech news forums/ community chats do you follow?

  • @aus1046
    @aus1046 11 วันที่ผ่านมา

    Which do you recommend? Selenium driverless or nodriver?

  • @return_1101
    @return_1101 หลายเดือนก่อน

    The best one! Thank you very much, mr. Rooney!

  • @davidl3383
    @davidl3383 หลายเดือนก่อน

    excellente and easier than playwrigth etc !! thank you so much

  • @nickwoodward819
    @nickwoodward819 2 หลายเดือนก่อน +2

    i'm a bit confused by "using the chrome already installed on your machine" - do you mean the server? or is this a python thing? (I'm using js and would be scraping either in a serverless function or in node)

    • @kinuthiamatata6040
      @kinuthiamatata6040 2 หลายเดือนก่อน

      i agree this might not be easily "automateable" , "You may consider Playwright's connectOverCDP() with a containerized Chrome. Just make sure to expose Chrome's debug port via socat (socat TCP-LISTEN:9222,fork TCP:localhost:9222) and connect to that. This works great with Node/serverless and gives you full browser auto-capabilities."

    • @JohnWatsonRooney
      @JohnWatsonRooney  2 หลายเดือนก่อน +2

      Sorry to clarify - when you install selenium or playwright,m they install their own version of chrome. these two use the existing install on your pc already (if you have it) so you install chrome as you would normally, no extra install steps etc

  • @Optimusjf
    @Optimusjf หลายเดือนก่อน

    How can I send a PFX client certificate in Selenium-driverless?

  • @rewazilol
    @rewazilol 2 หลายเดือนก่อน +1

    Do you have experience using Playwright and there being issues? On one hand I know its a test lib, but on the other hand its extremely well funded and well maintained. The nodriver lib looks like it was built by one guy. I'm still kind of not sure which way to go

    • @JohnWatsonRooney
      @JohnWatsonRooney  2 หลายเดือนก่อน +3

      Playwright it an amazing library, it’s easy to use and works extremely well. But for web scraping you have to monkey around with it as even the most basic WAF can detect it and throw a captcha. Nodriver is build by one guy but it’s open source and removes a lot of the obvious flags that the browser is being controller automatically which is why I’m talking about it here

  • @utsavgoswami5263
    @utsavgoswami5263 หลายเดือนก่อน

    thank you so much for this. if it is okay, are there any better alternatives (i.e. cheaper) to proxyscrape?

  • @EmanueleCannizzaro
    @EmanueleCannizzaro 2 หลายเดือนก่อน +1

    As usual a great content explained in plain English.

  • @saadkhan883
    @saadkhan883 หลายเดือนก่อน

    Sir I am using playwright library to scrap Google maps so please tell is it a good choice to scrap data from GMpaps , because I am still thinking about blocking or recaptcha ...

  • @serkhetreo2489
    @serkhetreo2489 หลายเดือนก่อน

    Hi, what if i want to build an unofficial api for a site . Is there a better way

  • @green-forest-23
    @green-forest-23 2 หลายเดือนก่อน +1

    There's something like this for typescript?

    • @JohnWatsonRooney
      @JohnWatsonRooney  2 หลายเดือนก่อน +1

      Yes but I forget what it’s called - hopefully
      Someone else will know

    • @boniazdaniel
      @boniazdaniel 2 หลายเดือนก่อน

      Puppeteer extra plugin? The stealth one

  • @hamzahalli3500
    @hamzahalli3500 2 หลายเดือนก่อน +1

    Thank you

  • @cstanleyhns
    @cstanleyhns หลายเดือนก่อน

    Hi, is it possible to run this kind of thing in docker and then ultimately in a lambda?

    • @ibrahimmudassar6563
      @ibrahimmudassar6563 17 วันที่ผ่านมา

      I have the same question

    • @cstanleyhns
      @cstanleyhns 17 วันที่ผ่านมา

      @ibrahimmudassar6563 i ended up using playwright with python running in a docker container and deployed to ECS within AWS. Works well

  • @yafethtb
    @yafethtb หลายเดือนก่อน

    At last, a web scraping library that does not need another Chromium and uses only my Chrome! I'm waiting for something like nodriver.

  • @amrogendiah198
    @amrogendiah198 หลายเดือนก่อน

    Could you make a video about scraping using AI with python ?

  • @SlimeTurner-n9y
    @SlimeTurner-n9y 14 วันที่ผ่านมา +1

    Bro im having trouble accesing s with no driver someone help me lol ill pay

  • @phantazzor
    @phantazzor 2 หลายเดือนก่อน

    how to scrape an app if there are no web version

  • @duyduy5595
    @duyduy5595 15 วันที่ผ่านมา

    Why not just use applescript ???

  • @hw5622
    @hw5622 หลายเดือนก่อน

    great video! thx!!!!!!!!

  • @wisjnujudho3152
    @wisjnujudho3152 หลายเดือนก่อน

    wow. i think i need to modify all of my scrapers.

  • @DavidChavez-z2v
    @DavidChavez-z2v หลายเดือนก่อน

    Como sabes estas cosas excelente

  • @luisechevarria186
    @luisechevarria186 หลายเดือนก่อน +1

    Where does one begin for web-scraping? I am trying to scrape, JS heavy websites, all I see are recommendations to use Selenium/Playwright, this video is not too clear about what to use instead.

    • @JohnWatsonRooney
      @JohnWatsonRooney  หลายเดือนก่อน +2

      Try using selenium-driverless. Similar to selenium but less detectable causing you less issues scraping

  • @MohanadSaid-u8x
    @MohanadSaid-u8x 2 หลายเดือนก่อน +1

    Liiiiiit 🔥🔥🔥🔥

  • @Canda-fh4xc
    @Canda-fh4xc หลายเดือนก่อน

    Thank you