I'm trying to extract product informatin using selenium. Here is the URL for the page https://www.dell.com/en-us/shop/dell-laptops/sr/laptops/11th-gen-intel-core?appliedRefinements=23775
To start off, I got the parent class of the elements that I'm trying to scrape, which are the computer models, CPU, etc, and they are inclosed in cards
The parent class for the cards "stack-system ps-stack", but when I try to find the list of elements in the class, it's empty.
driver = webdriver.Chrome()
url = "https://www.dell.com/en-us/shop/dell-laptops/sr/laptops/11th-gen-intel-core?appliedRefinements=23775"
classname_main = "stack-system ps-stack"
driver.get(url)
driver.implicitly_wait(50)
products = driver.find_elements_by_class_name("stack-system ps-stack")
print(products)
I would like to get the contents for the cards as well.