-
Jay Zorka became a registered member a year ago
-
Flora Abdias replied to the discussion Analyze discounts, seller details, and shipping options from ASDA UK using PHP in the forum General Web Scraping a year ago
Analyze discounts, seller details, and shipping options from ASDA UK using PHP
The script could be improved by adding error handling for missing elements. For example, if discounts or shipping options are not found, logging these cases separately can help identify trends in missing data.
-
Flora Abdias replied to the discussion Extract reviews, pricing, product specifications from Tesco UK using Node.js in the forum General Web Scraping a year ago
Extract reviews, pricing, product specifications from Tesco UK using Node.js
The script can be improved by adding error handling for elements that may not load properly due to network delays or changes in the website structure. For example, adding a try-catch block around the scraping functions can ensure the script continues running even if a specific section fails.
-
Flora Abdias started the discussion Scrape product availability from Otto Germany using Python in the forum General Web Scraping a year ago
Scrape product availability from Otto Germany using Python
Otto is one of the most popular e-commerce platforms in Germany, known for its wide variety of products ranging from fashion to electronics. Scraping product availability from Otto involves using Python with the requests and BeautifulSoup libraries to fetch and parse the HTML content of a product page. Product availability is typically…
-
Flora Abdias changed their photo a year ago
-
Flora Abdias became a registered member a year ago
-
Ariah Alfred replied to the discussion How can I scrape product details, seller ratings, delivery Shoptime Brazil? in the forum General Web Scraping a year 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 a year 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 a year 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 a year ago
- Load More