Open mcolus opened 4 years ago
Where the code breaks
line 366, in getUserFollowers
actionChain.key_down(Keys.SPACE).perform()
I could note replicate the issue, but i think it was because ActionChains needed to be reinstantiated. In the first version it is possible that ActionChain was using a stale DOM. Now it should work.
I just tried it with a sleep(2)
and it works without problems. Would be great if you would try it.
while True:
actionChain.key_down(Keys.SPACE).perform()
sleep(2)
if time.time() > endtime:
actionChain.key_up(Keys.SPACE).perform()
break
actionChain.double_click(body).perform()
endtime = time.time() + 10.0
while True:
actionChain.key_down(Keys.SPACE).perform()
sleep(2)
if time.time() > endtime:
actionChain.key_up(Keys.SPACE).perform()
break
Issue on the inner circle event