

Ariah Alfred
-
Ariah Alfred replied to the discussion How can I scrape product details, seller ratings, delivery Shoptime Brazil? in the forum General Web Scraping 3 months ago
How can I scrape product details, seller ratings, delivery Shoptime Brazil?
To scrape delivery options, locate the section that lists shipping costs, times, or options such as express delivery. With Playwright, you can extract this information by targeting the appropriate element and printing its content.
from playwright.sync_api import sync_playwright with sync_playwright() as p:
browser…
-
Ariah Alfred replied to the discussion How can I scrape product name, price, stock status from Extra Brazil Java Jsoup? in the forum General Web Scraping 3 months ago
How can I scrape product name, price, stock status from Extra Brazil Java Jsoup?
For scraping the stock status, you can target the section indicating whether the product is in stock or out of stock. Using Jsoup, fetch the relevant HTML tag and extract its text to display availability.
import org.jsoup.Jsoup; import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
public class ScrapeExtra {
public static…
-
Ariah Alfred started the discussion Use Node.js to scrape seller ratings from JD.com product pages in the forum General Web Scraping 3 months ago
Use Node.js to scrape seller ratings from JD.com product pages
Scraping seller ratings from JD.com, one of the largest e-commerce websites in China, involves handling dynamic content rendered by JavaScript. Node.js, along with Puppeteer, is an excellent choice for this task as it provides the ability to interact with dynamically loaded pages and extract content effectively. Seller ratings on JD.com…
-
Ariah Alfred changed their photo 3 months ago
-
Ariah Alfred became a registered member 3 months ago