I'm coding a small project for web scraping and the program scraps a shop that contains multiple pages. It's a little bit hard to get some things to be clicked, so for me it's a lot easier to get their URL with Beautifulsoup and just to do driver.get(URL). I've been recently kicked out from website because of the multiple urlopen with requests (earlier), that's why I started to use selenium. My question is: Would be driver.get(URL) seen as a most likely "human-action" like clicking on a button? Would be driver.get as risky as urlopen, so that my driver will be kicked out?
I hope you understood my question. Thanks in advance.