I am using selenium to parse data from the french site leboncoin.fr with python and selenium. I have tried many solutions that I have found here in StackOverflow like this one. Nonetheless I keep getting stuck in the captcha, I solve it manually to continue but then it launches it again non-stop so I can never reach the page itself.
Is there any other way to parse this web or to avoid getting stuck like this?
I have also tried this code:
options = webdriver.ChromeOptions()
options.add_argument("start-maximized")
options.add_experimental_option("excludeSwitches", ["enable-automation"])
options.add_experimental_option('useAutomationExtension', False)
driver = webdriver.Chrome(options=options, executable_path=r'./chromedriver')
driver.get('https://www.leboncoin.fr/')