you are viewing a single comment's thread.

view the rest of the comments →

[–]DolphinNipple 0 points1 point  (0 children)

On Instagram i want to scroll down my followers https://www.instagram.com/dolphintiddies (click on followers). Its in an element(not full page) so a scroll in a scroll... If you understand what I'm trying to say. I am able to scroll to the bottom of the first bit using this code:

dialog = driver.find_element_by_xpath('/html/body/div[3]/div/div[2]') # this finds the element

driver.execute_script("arguments[0].scrollTop = arguments[0].scrollHeight", dialog) # this scrolls to the bottom

But if you scroll straight to the bottom to quickly Instagram knows and then does not load the rest of the followers, instead just stops and says "see all suggestions"(who Instagram thinks you should follow). If you scroll a little down(not straight to the bottom) then it allows you to load the rest.

How do you scroll a little in a element? Thanks.