

Monica Nerva
-
Monica Nerva replied to the discussion Scrape product name, price, stock availability from Argos UK using Go and Colly? in the forum General Web Scraping 3 months ago
Scrape product name, price, stock availability from Argos UK using Go and Colly?
For stock availability, use Colly to find the element that indicates whether the product is in stock or out of stock. Extract the text from the element, which might show terms like “In Stock” or “Out of Stock.”
package main
import ("fmt"
"log"
"github.com/gocolly/colly"
)
func main() {
// Create a new collector
c := colly.NewCollector()
//…
-
Monica Nerva replied to the discussion How can I scrape product features, price, promotions from Ponto Frio Brazil? in the forum General Web Scraping 3 months ago
How can I scrape product features, price, promotions from Ponto Frio Brazil?
To scrape promotions, locate the section where discounts or special offers are displayed. Use page.$eval() to extract the promotion text. This is often presented as a percentage discount or special note within the product section.
const puppeteer = require('puppeteer'); (async () => {
const browser = await puppeteer.launch({ headless: true…
-
Monica Nerva started the discussion Extract shipping policies from Ceneo Poland using Node.js in the forum General Web Scraping 3 months ago
Extract shipping policies from Ceneo Poland using Node.js
Ceneo is one of the most popular price comparison websites in Poland, helping customers find the best deals on various products. Scraping shipping policies from Ceneo involves focusing on the delivery details that are often provided by individual sellers. These policies typically include shipping costs, estimated delivery times, and options…
-
Monica Nerva changed their photo 3 months ago
-
Monica Nerva became a registered member 3 months ago