User's Guide > About the User's Guide > Codebeamer QA: Test Management > Configure Coverage Browser Behavior
Configure Coverage Browser Behavior
This page describes the configurations available for coverage browser behavior.
Automatic Submission of Results
By default, coverage browser results do not load immediately and automatically. It is possible to change this behavior to edit the filters before the results are shown. To enable the results from loading automatically, the following section must be added to the application configuration:
"testCoverage" : {

"automaticSubmitDisabled" : false

}

If automaticSubmitDisabled is set to true, the user must click GO in the Filter Test Run Browser section to apply the filters and load the results.
If automaticSubmitDisabled is set to false or this section is not present in the application configuration, the results load automatically.
Default Preselection of Trackers
The number of the preselected trackers is limited to five by default when using the below filters in the specified coverage browsers:
Filter Type
Coverage Browser Type
Application Configuration
Initial level filter
Test Run Browser, Release Coverage
"testCoverage" : {
"maxNumberOfInitialTrackers" : 5
}
Test case filter
Any kind of Test Run Browsers
"testCoverage" : {
"maxNumberOfTestCaseTrackers" : 5
}
Second level filter
Epics, Requirements and User Story trackers.
"testCoverage" : {
"maxNumberOfSecondaryTrackers" : 5,
}
The default value of both the "maxNumberOfInitialTrackers" and the "maxNumberOfTestCaseTrackers" configuration is 5. To increase or decrease the default value, amend the Application Configuration accordingly.
In case the number of trackers listed exceeds the value defined in the application configuration, Codebeamer displays the following warning messages:
* 
For initial level:
For performance reasons, none of the trackers are selected on initial level. Please select them manually!
For test case level:
For performance reasons, none of the trackers are selected in test case level. Please select them manually!
If page view is:
Enabled: The warning message is displayed only on the first opening of a coverage page.
Disabled: The warning message is shown whenever a user opens a coverage page.
Was this helpful?