How to avoid anti-bot
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.
and these messages are displayed under chromedriver
Can you advise me on how to solve this problem?
Thanks
some sites in anti scraping/crawler protection. look at these reference articles Bypassing anti-bot protections: Advanced techniques for web scraping Anti-bot: What Is It and How to Get Around How to Avoid Bot Detection with Selenium
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?