withBatchId method
Use this method to set the unique id of the batch using a Fluent interface.
You need to set the id explicitly if you want to batch tests that are run at different times or in different platforms or processes. For more information see Batching tests in a distributed environment
Syntax
eyes.setBatch(new BatchInfo(name).withBatchId('myId');
Parameters
- id
- Type:String
- The unique id of the batch. If passed as null, and the environment variable APPLITOOLS_BATCH_ID is defined, then its value will be used as the id. If the environment variable is not defined then an internal unique id will be generated and used.
Return value
- Type: BatchInfo
Remarks
This command is intended for use instead of the setId method.
It can be called as part of the constructor of the Batchinfo object
as shown in the syntax section.