WaitTimeoutError during test
See original GitHub issueHelo!
After an error on Travis (https://github.com/OnetapInc/chromy/issues/62), I try to reduce async limit to pass test.
asyncCaptureLimit: 5,
asyncCompareLimit: 50
But nothing change 😢 : https://travis-ci.org/20minutes/colette/builds/271137302
Then I try with
asyncCaptureLimit: 1,
asyncCompareLimit: 1
https://travis-ci.org/20minutes/colette/builds/271199288 I don’t know why it’s green even if i have no result of the test…
Issue Analytics
- State:
- Created 6 years ago
- Comments:21 (9 by maintainers)
Top Results From Across the Web
Custom message on wait timeout error - Stack Overflow
WebDriver.prototype.wait, but I'm having a hard time verifying that the WebDriver shows up as browser in protractor).
Read more >What Causes “Lock wait timeout exceeded” Error in MySQL?
First, in order to keep it short, we'll run all testing in the default isolation level REPEATABLE READ. However, later we can run...
Read more >How to Fix a Lock Wait Timeout Exceeded Error in MySQL
This blog post covers the implications of a MySQL InnoDB lock wait timeout error, how to deal with it, and how to track...
Read more >error handling speech_recognition WaitTimeOutError
How do check if a text column in my dataframe, contains a list of possible patterns, allowing mistyping? Spark Structtype for coalesce ·...
Read more >Feature Request: act.wait timeout error - DevExpress Support
When act.wait times out and the condition within the second parameter delegate never returns true it should either fail/error the test or ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I was getting this WaitTimeoutError, too, not running natively, but when switching to run in docker. Happened more often with higher asyncCaptureLimit and more complex pages, but even sometimes with asyncCaptureLimit: 1.
Eventually tracked the problem down to chrome dying with a bus error, and finally tracked this down to running out of space in /dev/shm. Docker allocates 64MB to /dev/shm by default.
Running docker with
--shm-size 512m
fixed the issue for me. Lets me run with default asyncCaptureLimit: 10.cross referencing this issue… https://github.com/garris/BackstopJS/issues/603#issuecomment-346478523