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
When I run the attached simple SIDE file, Selenese-runner-java would enter infinite loop. The SIDE file is actually very simple, only containing a "run" command which calls another simple test case.
I believe this is a bug. Please have a look.
The command line I used to run the SIDE is like the following:
java -jar selenese-runner.jar --driver chrome --max-retries=3 D:\asd.side
Finally I spot the bug. It's the "run" command where the retry times in the context is reset by its sub test case. So "run" command will never reach max retries and be locked in an infinite loop.
My solution is to never retry "run" command and once return from the execution of sub test case, set the retries in the context to be max to let it break out of the while loop.
Hi,
When I run the attached simple SIDE file, Selenese-runner-java would enter infinite loop. The SIDE file is actually very simple, only containing a "run" command which calls another simple test case.
I believe this is a bug. Please have a look.
The command line I used to run the SIDE is like the following:
java -jar selenese-runner.jar --driver chrome --max-retries=3 D:\asd.side
asd.zip
The text was updated successfully, but these errors were encountered: