-
Rutendo Urvashi started the discussion How can I scrape product name, price, stock status from Extra Brazil Java Jsoup? in the forum General Web Scraping a year ago
How can I scrape product name, price, stock status from Extra Brazil Java Jsoup?
To scrape the product name from Extra Brazil, you can use Java with the Jsoup library. The product name is often located within an h1 or span tag with a specific class. Using Jsoup’s select() method, you can extract the name after fetching the page.
import org.jsoup.Jsoup; import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
public…
-
Rutendo Urvashi changed their photo a year ago
-
Rutendo Urvashi became a registered member a year ago
-
Varda Wilky replied to the discussion How to scrape movie details from Viooz.ac using JavaScript and Puppeteer? in the forum General Web Scraping a year ago
How to scrape movie details from Viooz.ac using JavaScript and Puppeteer?
I add error handling with try-catch blocks to gracefully handle issues like missing elements or network timeouts. This ensures the scraper continues running without crashing.
-
Varda Wilky replied to the discussion How to scrape browser profiles from XBrowser using Python and Selenium? in the forum General Web Scraping a year ago
How to scrape browser profiles from XBrowser using Python and Selenium?
Using proxies and rotating user-agent headers helps mimic real user behavior, reducing the chances of being blocked during repeated scraping sessions.
-
Varda Wilky started the discussion Scrape product specifications, seller ratings, delivery option Carrefour Brazil? in the forum General Web Scraping a year ago
Scrape product specifications, seller ratings, delivery option Carrefour Brazil?
To extract product specifications from Carrefour Brazil, you can use PHP with cURL to fetch the page content and DOMDocument to parse the HTML. Specifications are often listed in a table or a series of div elements. By navigating through the DOM, you can retrieve these details.
<?php // Initialize cURL
$ch = curl_init();
curl_setopt($ch,…
-
Varda Wilky changed their photo a year ago
-
Varda Wilky became a registered member a year ago
-
Elisavet Jordana replied to the discussion Scrape product availability, price from Central Thailand’s using Python n Scrapy in the forum General Web Scraping a year ago
Scrape product availability, price from Central Thailand’s using Python n Scrapy
To scrape product availability and prices from Central Thailand’s e-commerce site, Scrapy is well-suited for the task, particularly when dealing with structured HTML pages. By using Scrapy’s XPath selectors, you can navigate the page and extract information such as product price, availability status, and product titles. The page might use…
-
Elisavet Jordana replied to the discussion Scrape customer reviews from Tesco Lotus Thailand using Node.js and Puppeteer? in the forum General Web Scraping a year ago
Scrape customer reviews from Tesco Lotus Thailand using Node.js and Puppeteer?
Scraping customer reviews from Tesco Lotus Thailand with Puppeteer involves dealing with dynamic content. After loading the product page, you’ll need to wait for reviews to be fully loaded. Once all the reviews are visible, use Puppeteer’s page.evaluate() to extract the review data. This includes the reviewer’s name, their rating, and their…
- Load More