Please find below the code we used to start a simple scraping of the Peugeot website. The aim is to find the price of motors. We collect some extra information on the way.
That's really unfinished business, but the work to carry it to the end is rather simple.

# Imports
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys

# Launching the driver + visiting the page
driver = webdriver.Chrome()
driver.get("https://www.peugeot.fr/nos-vehicules/e-208.html")

# Accepting the cookies
btn_cookie = driver.find_element(By.CSS_SELECTOR, "#_psaihm_id_accept_all_btn")
btn_cookie.click()

# Accessing the configuration
btn_config = driver.find_element(By.CSS_SELECTOR, "#main > div > div:nth-child(2) > div.sticky_bottom_bar.aem-GridColumn.aem-GridColumn--default--12 > div > div > div > a.q-sticky-bottom-bar__link.q-mod.q-mod-analytics.hide-for-small-only.hide-for-medium-only")
btn_config.click()

# Accessing the prices and names for each finishing
bandeau_finition = driver.find_element(By.CSS_SELECTOR, "#selection-bar > div.slick-slider.selection-bar_inner-slider.brand-p.slick-initialized > div > div")

titre_finition = bandeau_finition.find_elements(By.CSS_SELECTOR, "p.selection-bar-element__inner-name.brand-p")
for el in titre_finition:
    print(el.get_attribute("innerHTML"))

prix_finition = bandeau_finition.find_elements(By.CSS_SELECTOR, "span.selection-bar-element__inner-price.brand-p")
for el in prix_finition:
    print(el.get_attribute("innerHTML"))