Zalenium idleTimeout property use?

213 Views Asked by At

Does Zalenium idleTimeout property means that the container would be alive for the configured timeout period. If I set capabilities.setCapability("idleTimeout",120); Does this mean, that Zalenium would identify the container as 'Zalenium Test Completed' after 120 secs.

So, if my testcase is a lengthy one which spans beyond 120 secs, does Zalenium allow the testcase to proceed further or will it shutdown the container.

This is what I observed while executing lengthy testcases using Zalenium. Can somebody please help me with a response to this query?

1

There are 1 best solutions below

2
On

idleTimeout is the length of time a session can stay alive without receiving new commands. It is not related to the total length of the test.