Python Selenium Tutorial #5 - How to bypass/solve normal captcha using 2captcha API

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024
  • 🌐 NodeMaven Proxy Provider: go.nodemaven.c...
    💥 Special Bonus: Use "Michael" at checkout for an extra +2GB of bandwidth.
    🤖 2captcha Captcha Solving Service: bit.ly/2captch...
    This selenium tutorial is designed for beginners to learn how to use the Python selenium library to perform web scraping, testing, and creating website bots. Selenium is a Python library that provides a high-level API to control Chrome or Chromium and Firefox or Geckodriver over the DevTools Protocol. Selenium runs non-headless by default but can be configured to run headless.
    Playlist: • Python Selenium Tutorial
    Code: github.com/mic...
    Join our Discord: / discord
    Gecko Driver: github.com/moz...
    Chrome Driver: chromedriver.c...
    Download Visual Studio Code: code.visualstu...
    Download Python: www.python.org...
    Selenium Library: pypi.org/proje...
    Donate
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    PayPal: support@websidev.com
    Bitcoin Wallet: bc1q05j8gcnq4mzvgj603cxdc8xxck4jgnu2ljsrt4
    Ethereum Wallet: 0x5e7BD4f473f153d400b39D593A55D68Ce80F8a2e
    Social
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    Website: websidev.com
    Linkedin: / michael-kitas-638aa4209
    Instagram: / michael_kitas
    Github: github.com/mic...
    Business Email: support@websidev.com
    Tags:
    - Python Selenium Tutorial
    - Full Course Selenium
    - Python Selenium
    - Web Scraping Full Course
    - Python Selenium Web Scraping Full Course
    #selenium #python #webscraping

Комментарии • 45

  • @Autoscraping
    @Autoscraping 8 месяцев назад +1

    An impressive video that has served as an inspiration for our new members. Your generosity is much appreciated!

  • @EasyTraderCrypto
    @EasyTraderCrypto 2 года назад +1

    Топ видео, на всем ру ютубе не мог найти, то что объяснил ты, уже второй раз выручаешь!

  • @quransurah7865
    @quransurah7865 18 дней назад

    Having this eoror: TwoCaptcha object has no attribute 'normal'

  • @ngoha35
    @ngoha35 Год назад +2

    which package of twocaptcha you use? i got an error ImportError: cannot import name 'TwoCaptcha' from 'twocaptcha' (unknown location)

  • @alwinjohnson3469
    @alwinjohnson3469 2 месяца назад

    caseSensitive is not working ....give me some idea for this......

  • @thegrind9628
    @thegrind9628 Год назад +1

    What if the captcha I'm trying to take the screenshot have no id or class?
    It looks like this ->

    • @MichaelKitas
      @MichaelKitas  Год назад +1

      Use an attribute, like the [alt=“Captcha”]

    • @thegrind9628
      @thegrind9628 Год назад +1

      @@MichaelKitas Alright ! Thanks. I used XPath btw.

    • @chefaa94
      @chefaa94 10 месяцев назад

      The image captcha contain number maybe and it's encoded with base64 , you can decode it to jpg in some website

  • @uplifthabesha754
    @uplifthabesha754 Год назад +2

    cannot import name 'TwoCaptcha' from 'twocaptcha' (unknown location)

    • @MichaelKitas
      @MichaelKitas  Год назад

      Ensure you've installed the correct library: pip install 2captcha-python
      If you've previously installed an incorrect library, uninstall it first: pip uninstall TwoCaptcha

  • @uplifthabesha754
    @uplifthabesha754 Год назад +1

    It keeps saying 'TwoCaptcha' object has no attribute 'normal' when I run the code

    • @MichaelKitas
      @MichaelKitas  Год назад

      Ensure you've installed the correct library: pip install 2captcha-python
      If you've previously installed an incorrect library, uninstall it first: pip uninstall TwoCaptcha

  • @agasta8562
    @agasta8562 2 года назад +2

    thank you for your tutorial. In my case i got error : ERROR_ZERO_BALANCE. is this paid, for the use of api key

  • @SURESHV-ww8et
    @SURESHV-ww8et Год назад +1

    after getting api key , i tried the same way but it is not working , it showing none in result

    • @MichaelKitas
      @MichaelKitas  Год назад

      Not sure why you get that, mind sharing code?

  • @Python_Programmer798
    @Python_Programmer798 2 месяца назад +1

    thanks mate it worked ❣

  • @william_ade
    @william_ade 5 месяцев назад +1

    What extension are you using for autocomplete

    • @MichaelKitas
      @MichaelKitas  5 месяцев назад

      GitHub Copilot, it saves a lot of time, from repetative tasks

  • @jesusmaria9271
    @jesusmaria9271 Год назад +1

    how would you solve it using Alt="" options?

  • @omardakelbab924
    @omardakelbab924 2 года назад +1

    'TwoCaptcha' object has no attribute 'normal' im getting error

    • @MichaelKitas
      @MichaelKitas  2 года назад +2

      You have installed the wrong module Remove the current incorrect package pip uninstall TwoCaptcha and install the correct one pip install 2captcha-python

    • @ITEngines
      @ITEngines Год назад +1

      @@MichaelKitas ty

  • @hope-kz6tb
    @hope-kz6tb 2 года назад +1

    And please make a video on how our selenium bot can always stay online and use tor network

  • @nabilkhaldi5566
    @nabilkhaldi5566 Год назад +1

    .screenshot She didn't show me in pycharm

    • @MichaelKitas
      @MichaelKitas  10 месяцев назад

      It sounds like you're having trouble viewing screenshots taken with Selenium in PyCharm. Make sure your script is saving the screenshot to a specific path and that you're checking the correct directory. Also, PyCharm won't display the image file directly in the editor; you'll need to open the screenshot with an image viewer. If the screenshot isn't being saved, check your code and ensure your webdriver has the correct permissions to write to disk. Good luck!

  • @hope-kz6tb
    @hope-kz6tb 2 года назад +1

    Bro is you have any free alternative of this service?

    • @MichaelKitas
      @MichaelKitas  2 года назад

      Unfortunately no, I had no luck finding a free way

  • @imadoulhou7854
    @imadoulhou7854 Год назад +1

    thanks man, I appreciate it, like+subscribe!

  • @gaminglink9432
    @gaminglink9432 2 года назад +1

    how to bypass sliding captcha?
    by geetest

    • @MichaelKitas
      @MichaelKitas  2 года назад +1

      I will make a video on that soon 👍

  • @khanhhuu3821
    @khanhhuu3821 Год назад +1

    what is theme VS code

    • @MichaelKitas
      @MichaelKitas  Год назад +1

      Bearded Theme - Arc

    • @khanhhuu3821
      @khanhhuu3821 Год назад

      @@MichaelKitas thanks very much respect for you

  • @muhammadsalmandata
    @muhammadsalmandata 7 месяцев назад +1

    there is an normal attribute error

    • @MichaelKitas
      @MichaelKitas  4 месяца назад

      Can you send me the exact error?

    • @muhammadsalmandata
      @muhammadsalmandata 4 месяца назад +1

      Where i can send you exact error

    • @MichaelKitas
      @MichaelKitas  4 месяца назад

      @@muhammadsalmandata Can you send it here via text?

  • @jirkadolezal8127
    @jirkadolezal8127 Год назад +1

    👍👍👍👍👍👍👍👍👍👍👍👍