I have a list of some html links and want to scrape some data from these links using Beautiful Soup. All pages have same DOM structure:
I want to extract highlighted piece of data (in this case it is senior
) but I don't know what to do next with my code:
for link in links:
response = requests.get(link)
soup = BeautifulSoup(response.content, 'html.parser')