-
Lela Sandy became a registered member a year ago
-
Rorie Subhadra replied to the discussion Scrape product description, images, and seller information -Americanas Brazil? in the forum General Web Scraping a year ago
Scrape product description, images, and seller information -Americanas Brazil?
When scraping product images from Americanas Brazil, Selenium allows you to interact with the page and locate the image elements using xpath or css selectors. Product images are typically in img tags, and you can extract the src attribute to get the image URL. It’s useful to check for multiple images if the product has variations.
from selenium…
-
Rorie Subhadra replied to the discussion Scrape product name, price, rating from Mercado Livre Brazil using Puppeteer? in the forum General Web Scraping a year ago
Scrape product name, price, rating from Mercado Livre Brazil using Puppeteer?
To scrape the price from Mercado Livre Brazil, target the element containing the product price, which is typically wrapped in a span tag. Puppeteer enables you to extract text content once the page is fully loaded. You can use page.$eval() to capture the price and ensure it’s formatted correctly with the currency symbol.
const puppeteer…
-
Rorie Subhadra started the discussion Scrape product reviews from Argos UK using Ruby in the forum General Web Scraping a year ago
Scrape product reviews from Argos UK using Ruby
Scraping product reviews from Argos UK using Ruby involves utilizing the Nokogiri gem to parse the HTML content. The process begins with fetching the webpage content using the open-uri library, which allows us to send HTTP requests. Once the content is retrieved, Nokogiri is used to parse the HTML structure and navigate through the DOM tree…
-
Rorie Subhadra changed their photo a year ago
-
Rorie Subhadra became a registered member a year ago
-
Candice Agata replied to the discussion How can I scrape product name, price, rating from HomePro Thailand -Puppeteer? in the forum General Web Scraping a year ago
How can I scrape product name, price, rating from HomePro Thailand -Puppeteer?
To scrape the rating from HomePro Thailand, you’ll need to locate the element that contains the review score or star rating. This is usually found within a span tag or a div class that includes stars or text indicating the product’s rating. Using Puppeteer, you can extract the rating text once the page is fully loaded.
const puppeteer =…
-
Candice Agata 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 a year ago
Scrape product name, price, and rating from a Thai e-commerce site with Node.js?
To scrape the product rating, use Puppeteer to find the rating element, which is often inside a div or span containing star icons or numerical ratings. After waiting for the element to load, extract the rating text using page.$eval(). This can help you gather insights into how well a product is reviewed.
const puppeteer…
-
Candice Agata started the discussion Scrape bestsellers, delivery charges, and star ratings from WHSmith UK using Go in the forum General Web Scraping a year ago
Scrape bestsellers, delivery charges, and star ratings from WHSmith UK using Go
Scraping bestsellers, delivery charges, and star ratings from WHSmith UK involves setting up a Go application using the Colly library for efficient HTML parsing and data extraction. Bestsellers are often highlighted prominently on the homepage or in a dedicated section, typically with tags like “Bestseller” or “Top Picks.” These elements can…
-
Candice Agata changed their photo a year ago
- Load More