I can't seem to scrape this site at all

I'm trying to scrape this site: https://www.ilchiro.org/search/newsearch.asp

Can't seem to select any identifiers from the search results. Looks like the search results are being loaded in an iFrame?

Any help or guidance in the right direction will be greatly appreciated.

Hi there!

I've analyzed the page, and yes, according to it's structure, results are loaded within iframe.

There is actually a little trick you can still use and successfully scrape the results, as iframe source redirects to an actual results page that's been taken to be loaded within iframe.

Here's the URL that iframe contains on a website you brought:

/searchserver/people.aspx?id=E8FDBA59-2FA3-40FD-BC5A-3A67F7253023&cdbid=&canconnect=0&canmessage=0&map=True&toggle=True&hhSearchTerms=

Then we just add it to the original hostname,

https://www.ilchiro.org/searchserver/people.aspx?id=E8FDBA59-2FA3-40FD-BC5A-3A67F7253023&cdbid=&canconnect=0&canmessage=0&map=True&toggle=True&hhSearchTerms=

The results are the same, i would recommend you to sort it by name tho.

Happy scraping!

Great. Thanks for the reply. I'll take a look. Appreciate the help.