Is there any way to skip a captcha on a scheduled task?

0

It has given me the doubt that if in python with selenium it could be skipped or avoided, a captcha. Those that validate if you are a robot or not.

Before, these validations seemed foolish to me, since being a programmer, I find it inconvenient to perform tasks programmed on websites.

I tried something with Pytesseract but it only works with slightly distorted letters leaving that code a bit obsolete because most of them were not able to get it out correctly.

I would like to know: How to avoid these captcha? Is there any way?

    
asked by Diego Lopez 03.01.2018 в 21:28
source

1 answer

0

if it is for js it can be skipped by disabling js in the browser, you could copy the code from the web page, run it without the captcha and press enter. even if the html button is disabled with a "disabled" in your input, skip that is very simple, now, on the server side not so much, if it validates that you do not have it, you will simply be redirected to the page that the server indicate. One thing is the validation of part of the client (browser) and another of the server (and) bye

    
answered by 01.06.2018 в 22:35