I am trying to scrape the names of the accounts who liked a post on Instagram, using Selenium and Python. While I successfully scraped with no errors, the number of names returned was 11, way less than the actual number of people who liked the post. What's the cause of this, and how I can fix it?
liker_list = []
likers = driver.find_elements_by_class_name("qyrsm")
for n in likers:
#scrape the name of the likers
liker = n.find_element_by_class_name("_4EzTm").get_attribute("textContent")
liker_list.append(liker)
print(liker_list)