how to get the link of an image in selenium python
from selenium import webdriver
from selenium.webdriver.common.by import By
image = driver.find_element(By.XPATH, value='//*[@id="app"]/div/div/div[2]/div[1]/div[1]/img')
print(image.get_attribute("scr"))