** Привет список печати сохранить и следовать списку на python webdrive **
'' '
while True:
driver = self.driver
driver.get("https://www.instagram.com/p/BuE82VfHRa6/")
time.sleep(2)
elems = driver.find_elements_by_xpath("//a[@class=' Igw0E IwRSH eGOV_ _4EzTm ItkAi ']")
users = []
for elem in elems:
users.append(elem.get_attribute('title'))
print('Title : ' +elem.get_attribute('title'))
print(users)
' ''