Searching for data on multiple pages on a single site

1

I need to make a database with some product data from a website. Product details (name, value, brand) are public and divided into pages. Each page displays approximately 10 products and their data. I need to create a program that collects this data (which is displayed in html) and save those values. Preferably in Javascript or PHP. Does anyone know what the best way to do this? How would this reading be done? How do I show the code for which data to fetch?

    
asked by anonymous 20.11.2015 / 16:47

1 answer

0

Studying a little, I decided to do this by creating an extension for Chrome. In a file was created all the script that read the data. The extension basically inserted this script into the page, capturing the data using simple functions like getElementById('profissao').innerText and then jumping to the next page.

More details can be found at link

    
01.01.2016 / 03:37