BatchClose class
Use an object of this class to close a batch explicitly.
Introduction
The Test Manager displays test results in batches. For information on how tests are associated with batches based on a batch ID, and how you can use the SDK to control which tests will be part of a particular batch, see Grouping tests into batches with the SDK.
This topic describes the notions of an active batch and closing a batch.
A batch is created and becomes active when a test is started with a batch ID that does not match an existing active batch. As long as a batch is active, new tests that have a matching batch ID will be added to the batch.
Batches are closed automatically in one of two ways:
By default, runner-based SDKs implement the Auto batch closure feature. This feature closes the batches associated with the runner's test after the tests have completed.
To prevent large batches that could cause performance issues, the Eyes server closes active batches that have not been used for several hours, or if they have been in continuous use for more than a few days.
When a batch is closed, the Eyes server can send the user a batch completion notification. This feature must be enabled explicitly, see Batch completion notifications for details.
You can manage Auto batch closure by:
Disabling the Auto batch closure feature by calling
runner.setdontclosebatches
(not yet available in selenium java). This is useful if you want to combine tests from multiple runners, or tests that run as separate executions, into a common batch.Disabling the Auto batch closure by defining the environment variable
APPLITOOLS_DONT_CLOSE_BATCHES
(on supported SDKs). This is useful if you want to combine tests from multiple runners, or tests that run as separate executions, into a common batch.Manually closing the batch after it has been disabled, after all the tests have run, by using the
close
method.
Import statement
import com.applitools.eyes.fluent.BatchClose;
Example
The example below:
Illustrates how to prevent the runner from closing the batch, using
VisualGridRunner.setDontCloseBatches
orClassicRunner.setDontCloseBatches
.Illustrates how to manually close the batch when all tests on all runners have completed, using the method
BatchClose.close
.
Note that the batch ID of the batch being closed needs to be passed to the BatchClose.setBatchId
method. In this example, we assume that a batch ID was set for all of the batches by assigning a unique ID to the APPLITOOLS_BATCH_ID
environment variable. This is used as a default by the Configuration.setBatch
method which is set up in the suite Configuration object and then assigned to each Eyes instance.
/*
* After creating the runner, configure it so that won't close the batch
*/
runner = new VisualGridRunner(new RunnerOptions().testConcurrency(concurrentSessions));
runner.setDontCloseBatches(true);
/*
*/
* Setup a common batch
for all tests
BatchInfo batchInfo = new BatchInfo(batchName);
batchInfo.setId(myGetUniqueBatchID()); // User defined
suiteConfig = new Configuration()
.setBatch(batchInfo)
/* ... other configurations */
;
/*
* Assign the configuration to all newly created Eyes instances
*/
eyes = new Eyes(runner);
eyes.setConfiguration(suiteConfig);
/*
* After all the tests have completed, in all the runners
*/
List < String > batchIds = Arrays.asList(System.getenv("APPLITOOLS_BATCH_ID"));
BatchClose batchClose = new BatchClose();
batchClose.setBatchId(batchIds).close();
Methods
BatchClose method
To manually close a batch, instantiate an object of this class and then call BatchClose.setBatchId
followed by BatchClose.close
in a fluent method style, see the example above.
Syntax
BatchClose obj = new BatchClose();
Parameters
This method does not take any parameters.
Return value
Type: BatchClose
close method
Syntax
obj.close();
Parameters
This method does not take any parameters.
Return value
Type: void
setApiKey method
Syntax
BatchClose value = obj.setApiKey(apiKey);
Parameters
apiKey
Type: String
Your API key.
Return value
Type: BatchClose
The object that called this method. This allows other methods of this class to be appended in a Fluent style.
setBatchId method
When closing a batch manually, this call is typically followed by a call to the method BatchClose.close.
Syntax
EnabledBatchClose value = obj.setBatchId(batchIds);
Parameters
batchIds
Type: List
<String>
One or more batches to be closed.
Return value
Type: EnabledBatchClose
The returned object is an instance of a class inherited from BatchClose. This is to ensure that you only call BatchClose.close if you've set the batch ID by calling setBatchId
setProxy method
Syntax
BatchClose value = obj.setProxy(proxySettings);
Parameters
proxySettings
Type: ProxySettings
An object that defines how to interact with the proxy server.
Return value
Type: BatchClose
setUrl method
Syntax
BatchClose value = obj.setUrl(url);
Parameters
url
Type: String
The URL of the Eyes server.
Return value
Type: BatchClose
The object that called this method. This allows other methods of this class to be appended in a Fluent style.