Why did encounter a Timeout Error?
Hey Junior
The default idle timeout in your test suite is set at 120 seconds, but you have the flexibility to extend it up to a maximum of 1800 seconds by declaring the idleTimeout
capability in your desired capabilities. This gives you more time to work on your tests without the worry of timeouts.
It’s worth noting that timeouts can also occur due to network latency or if you haven’t correctly declared driver.quit()
. So, keeping an eye on these factors can help you prevent unexpected interruptions during your test execution.
If you have any more questions or need guidance on setting the idleTimeout
capability, feel free to ask! "