Hi,
I get the error ERROR [2018-05-15 09:24:56] [XXX] following_link error list index out of range
when trying to unfollow.
It has always worked before and now suddenly it stopped working, I've tried to just unfollow one person and so on but nothing makes it work.
Any clue?
Same error here
Solved in #2031 with:
this change will solve your issue:
open up unfollow_util.py file,
find and replace
following_link = browser.find_elements_by_xpath(
'//article//ul//li[3]')
with
following_link = browser.find_elements_by_xpath(
'//section//ul//li[3]')
just replaced article with section
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
If this problem still occurs, please open a new issue
Most helpful comment
Solved in #2031 with:
this change will solve your issue:
open up unfollow_util.py file,
find and replace
following_link = browser.find_elements_by_xpath(
'//article//ul//li[3]')
with
following_link = browser.find_elements_by_xpath(
'//section//ul//li[3]')
just replaced article with section