What’s the difference between screen scraping and web scraping?
Web scraping reads what’s behind the page, usually the HTML or an API. The data is already structured and ready to collect.
Screen scraping looks at what’s displayed on the screen and uses OCR to turn those pixels back into text.
Sometimes the two can get confusing, but the rule is simple:
if the data exists in the code, scrape the code. If it only exists visually, scrape the screen.
顯示更多