Solving Recaptcha using Selenium on Python (PART 1)

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024

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

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

    Thanks a lot for these tutorials.

  • @Al-oh9yr
    @Al-oh9yr Год назад +3

    Can you please send me the same for bypass recapcha with Java selenium ?

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

    Do we need to import any modules?

    • @W5z.
      @W5z. 2 года назад

      from selenium.webdriver.support.wait import WebDriverWait
      from selenium import WebDriver
      from selenium.webdriver.common.by import By
      cd = “C:/chromedriver.exe”
      browser = webDriver.Chrome(cd)

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

    please tell me how to handle Recaptcha using selenium java

  • @Gruell
    @Gruell 3 года назад

    What would be passed into "check?"

    • @superRe2a
      @superRe2a  3 года назад +1

      you would pass the element that you are looking for...for example, you might be looking for the button 'Delete'. You can pass 'Delete'. I suggest you inspect the html code for elements to pass.

    • @Gruell
      @Gruell 3 года назад

      @@superRe2a thanks

    • @sunilx9729
      @sunilx9729 3 года назад

      Can this solve incapsula recaptcha?

  • @ashu60071
    @ashu60071 3 года назад

    Thanks for this video. How to automate character captchas please make a video on it.

    • @trentmiles5616
      @trentmiles5616 3 года назад

      i know it is quite off topic but does anybody know of a good site to watch newly released movies online ?

    • @lancefabian5492
      @lancefabian5492 3 года назад

      @Trent Miles i watch on flixzone. Just google for it =)

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

    cant pass captcha with below code please help me !!!
    frames = driver.find_elements_by_tag_name("")
    driver.switch_to.frame(recaptcha-checkbox-border)
    driver.find_element_by_class_name("recaptcha-checkbox-border").click()
    error driver.switch_to.frame(recaptcha-checkbox-border)
    IndentationError: unexpected indent

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

      Python take 'spaces' and 'indentations/tabs' very seriously. You made a mistake somewhere . Try rewriting and checking the code line-by-line. Maybe you will find the mistake. Don't rush your coding. Run the code as often as possible...line by line.