You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
th3l0b3
changed the title
Traceback webdriver
IndexError after "Caching Pages Liked By: <User>"
Sep 4, 2014
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
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
The text was updated successfully, but these errors were encountered: