Open reallyallnamestaken opened 3 years ago
I'm also having the same issue.
I deleted the projected and started again, I tried doing the test with debug, but I can't go through it.
After trying around 20 times, one went through, but then I immediatly tried again and I'm getting the error again.
That’s weird. Probably some kind of navigation issue. Unfortunately, I have my own user, which has certainly a different type from yours. I can’t debug your issue unless you give me access to your account.
I was able to download everything, it took me around 10 tries per file
Is there a way to log all the links or possibly a step process? things happens so quickly at the end as the program immediately close the browser so one cannot really observe the final moments.
Well, you can redirect the standard output to a file :
npm run start > log.txt
It should work on linux, don't know if that work on windows.
There is a new reason for this error that I just came across. Password expired. If your password has expired you'll be prompted to change it before being allowed to log in. Hence changing the sequence of windows that this script expects. Hence leading to this error.
In other words, just log in to your account, normally through the browser, and make sure you don't get any unexpected popups or new windows, etc.
If you get a password reset window - reset the password. If you get a popup - Select "Don't show this again" and close the popup. If you get a popup with no option to select "Don't show this again", then raise this issue as, I think, the script will be required to be updated in that case.
I was able to by pass the error by editing navigation.js and by adding a 20 second delay after "await redirection(page);"
console.info("Start delay");
await new Promise(resolve => setTimeout(resolve, 20000)); // 20 sec
console.info("End delay");
i stil
I was able to by pass the error by editing navigation.js and by adding a 20 second delay after "await redirection(page);"
console.info("Start delay"); await new Promise(resolve => setTimeout(resolve, 20000)); // 20 sec console.info("End delay");
i still have the same issues.. even after adding 20 seconds delay.. any suggestion?
This were originally reported in issue #20 but as the reporter closed it after work-around were suggested, so I'm opening a new one. Similar symptoms as reported in #21 , however I don't see any pop-ups.
The script fail with the error below. Seem to be a timing issue. If you access the site manually this will be the point where you observe some waiting and/or a couple redirects. Same can be observed when running in debug mode on the launched Chrome browser. As a workaround I run in test mode and enter "rs" when it fails. Eventually it will go through. may take quite a few times though.