TSWebDriver4Delphi icon indicating copy to clipboard operation
TSWebDriver4Delphi copied to clipboard

How to avoid anti-bot

Open baxing opened this issue 1 year ago • 2 comments

For example, I tested it by going to the Shopee website and login, but when I pressed the button the system wouldn't allow me to login because there was an anti-bot protecting it, as shown in the picture. shoopee-anti-bot

and these messages are displayed under chromedriver err-chromedriver

Can you advise me on how to solve this problem?

Thanks

baxing avatar May 21 '24 06:05 baxing

The problem now is that on the page, it doesn't show Captcha, but it shows Loading Issue. If you check the message displayed in chromedriver, it will show that Couldn't read tbsCertificate as SEQUNCE which I went to see people who encountered this problem in stackoverflow He fixed it by using the command

options = webdriver.ChromeOptions()
options.add_experimental_option('excludeSwitches', ['enable-logging'])

which the add_experimental_option command This doesn't appear to be available in your Library. Please advise how to use this command. Or can you please update it to use this command?

baxing avatar May 23 '24 05:05 baxing