Using Python, Selenium, and BeautifulSoup to scrape for content of a tag?
问题 Relatively beginner. There are similar topics to this but I can see how my solution works, I just need help connecting these last few dots. I'd like to scrape follower counts from Instagram without the use of the API. Here's what I have so far: Python 3.7.0 from selenium import webdriver from bs4 import BeautifulSoup driver = webdriver.Chrome() > DevTools listening on ws://....... driver.get("https://www.instagram.com/cocacola") soup = BeautifulSoup(driver.page_source) elements = soup.find