Hi Guys, does anyone got this error?
When I launch the command "python quickstart.py" I got the message "Load button not found, working with current images!" and so I've got only 10-15 images to like :/
Cheers
Got this one too.
Do you think it's instagram who block this button when we make too much request in a short time?
@amauryleproux Nah, I guess Instagram changed smth and now we should probably change the classname or simply scroll down for additional pics to load
I found out that even though there is still a style section for this button, it's not present on the page. So the fix would be the removal of this part and doing smth like "scroll down -> scroll back -> check whether new images were loaded or not -> continue"
We all have this problem #724 as I mentioned few times this problem is really annoying
And another update: as discussed in #724 scrolling down and up works just fine. I'll try (once more) to make a pull request, but I'll probably need some suggestions about it. How is it common? Should this scrolling method be an exception?
@diveu that's great! tell me if you need some help, I'm at Slack (link in readme). To make it easier for you, just focus in what works for you, after test it and try using other logins (someone could help you testing).
the #724 solution works perfectly :
in the instapy/like_util.py add
at the top: "import math"
in the "get_links_for_tag" / "except" block:
for i in range(int(math.ceil(amount/12))):
browser.execute_script(
"window.scrollTo(0, document.body.scrollHeight);")
sleep(2)
OK
Now just copy-paste on each "load button" in like_util and everything works properly.
it's already merged, you guys just need to update InstaPy
@converge I merged and the issue is fixed except when I use Interact_user_followers. Anyone else having the issue after merge with this method?
Yes, but its fixed with copy/paste load button on each “not found” in like_util
@timgrossmann could merge it, I think you understand what am I talking about
@kuzne4eg I do understand, only like_by_tags is using the bug fix, like by location for example it's not patched. There is a PR #862 on the way, but we need help there (at comments).
Wrong!
Line 79, 171, 291
Yes this needs to be updated also to get_links_for_location and get_links_for_username😄 Works fine in there also.
hello @kuzne4eg, sorry I didn't got it, what's wrong ?
check it out: https://github.com/timgrossmann/InstaPy/pull/862
How do I update Instapy? pip update Instapy?
@Niels1990 best way is cloning it, and doing git pull
hey guys, there is a new PR for fixing this issue, can anyone help testing it ? #888
Still receiving the 'Load button not found' issue after the latest pull
Hello @Jhhoo , we need your help to test #888.
hey @converge, I've done the latest Git Pull, does it include test #888 ? Is there anything I'm missing?
@Jhhoo take a look at #888 (command line instructions)
someone with this issue yet ?
Most helpful comment
it's already merged, you guys just need to update InstaPy