Вот вам идея, я уверен, вы поймете, что делаете неправильно.
Вы перебираете неправильную вещь.
from selenium import webdriver
from bs4 import BeautifulSoup
url = '<your url>'
driver = webdriver.Chrome()
driver.get(url)
html = driver.page_source
soup = BeautifulSoup(html)
rows = soup.select('.carResultRow_CarDetails') # select all car rows in the page
for row in rows:
# Get price, you can get more details in similar manner.
Price = row.find('span', {'class': 'carResultRow_Price-now'})
print(Price.text)
Выход:
US$141.21
US$150.92
US$173.79
US$191.07
US$228.67
US$248.61
US$251.53
US$283.55