View Single Post
Old 03-05-2014, 04:10 PM   #11
aerodynamik
Enthusiast
aerodynamik doesn't litteraerodynamik doesn't litter
 
Posts: 43
Karma: 136
Join Date: Mar 2011
Device: Kindle Paperwhite
Hi sheep2045,

thanks for your support and help with this. I used your account to analyze the issue.

I ran into a few issues tonight with timeouts also using my normal browser. Access to the mobile site, which is used by the recipe, is quite slow overall.

This shouldn't break the recipe however. I still get the 404 error for the login form URL, which definitely exists though. I found a dirty fix by simply ignoring the error (try / except around br.submit() in get_browser), however I am sure I can find a clean resolution for this error.

Give me a few more days. If you absolutely cannot wait try this for now instead of the br.submit() at around line 51 of the recipe:
PHP Code:
try:
    
br.submit()
except:
    
self.log('submit raised an error, let's ignore and continue') 
Hope this helps for now.

Cheers,
aero
aerodynamik is offline   Reply With Quote