

Astghik Kendra
-
Astghik Kendra replied to the discussion Scrape product name, price, and rating from a Thai e-commerce site with Node.js? in the forum General Web Scraping 8 months ago
Scrape product name, price, and rating from a Thai e-commerce site with Node.js?
To scrape the product price, you can use Puppeteer to extract the price located in a span or div with a class related to pricing. Ensure that the element containing the price has fully loaded by waiting for the selector to appear. Once loaded, you can extract the price text and format it for use.
const puppeteer = require('puppeteer'); (async ()…
-
Astghik Kendra replied to the discussion Scrape product name, price, and stock from Tops Thailand using Puppeteer? in the forum General Web Scraping 8 months ago
Scrape product name, price, and stock from Tops Thailand using Puppeteer?
For scraping stock availability, Puppeteer is ideal for extracting information like “in stock” or “out of stock” text. Once the product page loads, find the availability status in a div or span with a specific class. Using page.$eval(), you can target that specific element to check whether the product is available for purchase.
const…
-
Astghik Kendra started the discussion Scrape product specifications, images, shipping details -Amazon Brazil -Python in the forum General Web Scraping 8 months ago
Scrape product specifications, images, shipping details -Amazon Brazil -Python
To scrape product specifications from Amazon Brazil, use Selenium to locate the product details section, often formatted as a table or list. Extract the specifications using find_elements and iterate through the rows or items to collect the data.
from selenium import webdriver from selenium.webdriver.common.by import By
driver…
-
Astghik Kendra changed their photo 8 months ago
-
Astghik Kendra became a registered member 8 months ago