

Paula Odalys
-
Paula Odalys replied to the discussion How can I scrape product details, seller ratings, delivery Shoptime Brazil? in the forum General Web Scraping 4 months ago
How can I scrape product details, seller ratings, delivery Shoptime Brazil?
For seller ratings, you can use Playwright to locate and extract ratings, which are usually displayed alongside the seller’s name or in a span with stars or numeric values. Playwright ensures you wait for the page to load fully before accessing the DOM.
from playwright.sync_api import sync_playwright with sync_playwright() as p:
browser…
-
Paula Odalys replied to the discussion How can I scrape product name, price, stock status from Extra Brazil Java Jsoup? in the forum General Web Scraping 4 months ago
How can I scrape product name, price, stock status from Extra Brazil Java Jsoup?
To extract the price from Extra Brazil, locate the element containing the pricing information, typically within a div or span tag with a class indicating the price. Using Jsoup’s select() method, you can fetch and parse this element.
import org.jsoup.Jsoup; import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
public class ScrapeExtra…
-
Paula Odalys started the discussion Use PHP to scrape discount banners from the homepage of Selfridges UK in the forum General Web Scraping 4 months ago
Use PHP to scrape discount banners from the homepage of Selfridges UK
Scraping discount banners from the Selfridges UK homepage involves using PHP to fetch the webpage content with the Guzzle HTTP client and parse the HTML with DOMDocument and XPath. Discount banners are typically prominent on the homepage, showcasing ongoing promotions, seasonal sales, or limited-time offers. These banners often contain text…
-
Paula Odalys changed their photo 4 months ago
-
Paula Odalys became a registered member 4 months ago