2

I am trying to scrape some information from a website. When I enter it using my browser (manually), everything works well and I don't get any request to solve Google captcha. But when I enter it using selenium library, the website starts to show the captcha.

How can I hide from websites that I am using selenium?

Why the captcha appears only when I use selenium library?

Minions
  • 5,104
  • 5
  • 50
  • 91
  • 1
    The captcha is to try to prevent automation. In your code, at the point right where the captcha is displayed (e.g. after doing `driver.get(url)`), add an `input('pausing for captcha ...')` statement so that you can enter the captcha manually after which you can then respond to the `input` statement to continue execution. – Booboo Nov 27 '20 at 17:42
  • @booboo and it won't apear if I reload the page, or if I go to the next page? – Minions Nov 27 '20 at 17:46
  • I don't know for sure; you will have to try it. – Booboo Nov 27 '20 at 18:08
  • @Booboo .. I am .. it seems that it works :D – Minions Nov 27 '20 at 18:11
  • https://stackoverflow.com/q/33225947/6793637 – PDHide Nov 27 '20 at 18:14

0 Answers0