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
Hi,
One option in the file 'protractor.conf.js' is causing zalenium to create a new 'empty' test session for each test that is executed. Resulting in the clogging of the dashboar (if --keepOnlyFailedTests false)
The option is :
restartBrowserBetweenTests: true,
This option should not be use with Zalenium as the container is destroyed at the end of each test.
Setting this option to true will create a new test session with a new container in order to restart the browser... Which is completely useless.. =D
What to do ?
Set the option to false or just comment/delete the line as the default value is 'false'
The text was updated successfully, but these errors were encountered:
Hi,
One option in the file 'protractor.conf.js' is causing zalenium to create a new 'empty' test session for each test that is executed. Resulting in the clogging of the dashboar (if --keepOnlyFailedTests false)
The option is :
restartBrowserBetweenTests: true,
This option should not be use with Zalenium as the container is destroyed at the end of each test.
Setting this option to true will create a new test session with a new container in order to restart the browser... Which is completely useless.. =D
What to do ?
The text was updated successfully, but these errors were encountered: