I want to scrape a GIS city website for project names active in town of Brighton. https://brighton.maps.arcgis.com/apps/webappviewer/index.html?id=2e3dacc6615e4cf59b6db043cc3f12cc
However, I can't seem to bypass the initial Terms & Agreements checkbox. I'm still new to webscraping so I'm not sure where to begin with this one (outside of the typical imports & requests):
import requests
from bs4 import Beautifulsoup
URL = "https://brighton.maps.arcgis.com/apps/webappviewer/index.html?id=2e3dacc6615e4cf59b6db043cc3f12cc"
content = requests.get(URL)
soup = BeautifulSoup(content.text, "lxml")
I tried to follow this question: How to bypass Terms and Conditions agreement with Beautiful Soup, however, this is a totally different scenario. I feel confident I'll be able to figure out the scraping portion; it's just the "Terms and Agreements" prompt I can't get past. Please help I'm desperate!