Home > Back-end >  How to Scrape data from pop-ups (i need to scrape data that is only visible once I click the popup,
How to Scrape data from pop-ups (i need to scrape data that is only visible once I click the popup,

Time:10-01

I'm an absolute beginner in Python. I need to scrape data from this website, which is a directory of professors

Some of the data are visible without the need to click, (names and school etc) However I need to scrape email, department info as well.

I've been searching on the internet for the whole day and I don't know how to do it Could anyone plz help?!

CodePudding user response:

When you check the network activity, you'll see that the data is dynamically loaded from google spreadsheets. You can retrieve the spreadsheet directly without scraping.

  • Related