Home > Mobile >  How to avoid bot detection in Selenium?
How to avoid bot detection in Selenium?

Time:01-30

I am trying to scrape enter image description here

Ideas?

CodePudding user response:

options = Options()
options.add_experimental_option("excludeSwitches", ["enable-automation"])
options.add_experimental_option('useAutomationExtension', False)
options.add_argument('--disable-blink-features=AutomationControlled')

Try these to remove the detection of the bot.

  •  Tags:  
  • Related