Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IndexError after "Caching Pages Liked By: <User>" #25

Open
th3l0b3 opened this issue Sep 4, 2014 · 3 comments
Open

IndexError after "Caching Pages Liked By: <User>" #25

th3l0b3 opened this issue Sep 4, 2014 · 3 comments

Comments

@th3l0b3
Copy link

th3l0b3 commented Sep 4, 2014

Was able to fight thorugh the last issue I had and now am getting to the Caching Pages Liked and errors to this:

Traceback (most recent call last):
File "fbstalker1.py", line 2030, in
options(sys.argv)
File "fbstalker1.py", line 1974, in options
mainProcess(user)
File "fbstalker1.py", line 1790, in mainProcess
dataList = parsePagesLiked(html)
File "fbstalker1.py", line 1146, in parsePagesLiked
pageCategory[count]
IndexError: list index out of range

@th3l0b3 th3l0b3 changed the title Traceback webdriver IndexError after "Caching Pages Liked By: <User>" Sep 4, 2014
@MaxTrance
Copy link

I am having this same issue.

@FLYBOY611
Copy link

Me as well, the exact same issue. Has anyone made any progress?

@emmanuelb23
Copy link

I just change pageName to pageCategory, because the problem is that var count exceeds the limit of index in the array pageCategory, but it seems like a patch however it works:

#for x in pageName:
for x in pageCategory:
m = r.search(str(x))
if m:
pageCategory[count]
tempList.append([uid,x.text,pageCategory[count].text,m.group(1)])
count+=1
return tempList

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants