I would use ScrapeNinja’s “Scrape (Real Browser)” module for this, as client-side JavaScript needs to run to retrieve the data.
You CANNOT use a HTTP “Make a request” module to fetch this data.
Fields:
-
CSS Selector field:
.visit-detail
-
Extractor function field:
function (input, cheerio) { let $ = cheerio.load(input); return { orderNum: $('h1').text().replace('Order #', ''), address: $('h3').first().next().text(), status: $('ul').children().first().children().last().text() } }