File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -270,8 +270,12 @@ export class ImageHelper {
270
270
const eventStartTime = Date . now ( ) . valueOf ( ) ;
271
271
let counter = 1 ;
272
272
options . timeOutSeconds *= 1000 ;
273
+ let pathActualImageCounter = resolvePath ( this . _args . reportsPath , imageName . replace ( "." , "_actual." ) ) ;
274
+ const shouldLogEveryImage = checkImageLogType ( this . _args . testReporter , LogImageType . everyImage ) ;
273
275
while ( ( Date . now ( ) . valueOf ( ) - eventStartTime ) <= options . timeOutSeconds && ! result ) {
274
- const pathActualImageCounter = resolvePath ( this . _args . reportsPath , imageName . replace ( "." , "_actual_" + counter + "." ) ) ;
276
+ if ( shouldLogEveryImage ) {
277
+ pathActualImageCounter = resolvePath ( this . _args . reportsPath , imageName . replace ( "." , "_actual_" + counter + "." ) ) ;
278
+ }
275
279
pathActualImage = await this . _driver . saveScreenshot ( pathActualImageCounter ) ;
276
280
if ( ! options . keepOriginalImageSize ) {
277
281
await this . clipRectangleImage ( options . cropRectangle , pathActualImage ) ;
You can’t perform that action at this time.
0 commit comments