I am scraping some phone images off of Bell's Website and the cookies seem to come with. Im not downloading the image, im simply collecting the links to the image. Im looking to see if I can disable that or somehow get the images without the cookies [I suspect I may have to download the images].
This is my code:
def ImageLinkFinder():
phoneImagesList = []
phoneImagesListRaw = driver.find_elements_by_css_selector('.device-img')
for image in phoneImagesListRaw:
image = image.get_attribute("src")
phoneImagesList.append(image)
return phoneImagesList