I'm trying to extract all the pictures available on this website page with Python and Selenium
For this, i'm using the CSS selector, with the following code :
try :
Pictures = self.browser.find_elements_by_css_selector('background-image')
except :
Pictures = None
for picture in Pictures :
print(picture.get_attribute("textContent"))
However, nothing happens : no message error, no blanks... just nothing.
My final target is to be able to download these pictures ; how can I do ?
Edit 1 :

