Launcher

Type to filter results. Use arrow keys to navigate, Enter to select.

Preferences

You've reached the end of the results

Project Overview

A small introductory project exploring web scraping: automating a headless browser to page through an e-commerce site’s search results and extracting product names from the rendered DOM.

Source Code Repository

Browser DevTools inspecting a Trendyol.com search results page, highlighting the product card element used to extract listings

Technical Details

  • Uses Selenium with the Firefox WebDriver to load and paginate through dynamically rendered search results (tested against Trendyol.com).
  • Uses BeautifulSoup to parse the resulting page source and extract product name elements by their CSS class.
  • Demonstrates identifying target elements via browser DevTools before writing the scraping logic.

References