Like the title says, I'm having problems with scraping a site, specifically, it's bloomberg.com
. I'm supposed to open a link like this:
from selenium import webdriver
driver = webdriver.Chrome(path_to_driver)
driver.get("https://www.bloomberg.com/research/stocks/private/snapshot.asp?privcapId=4253471")
But immediately I get a warning and captcha pops up on the second link I open. I didn't flood the website with other requests or anything, all I'm doing is calling driver.get()
every 10 seconds or so.
What I have tried so far: from here link to a similar question. I learned you should modify chromedriver.exe
in a HEX editor and replace "$cdc" with something like "xyzw", but doing that has changed nothing (I get different IP when I switch my router on/off so I'm definitely not IP blocked).
Any ideas what can be done here? So far I never encountered something like this before, getting blocked on a first link.