File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -401,4 +401,19 @@ public async Task PathOptionShouldCreateSubdirectories()
401
401
await elementHandle . ScreenshotAsync ( new ( ) { Path = outputPath } ) ;
402
402
PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-bounding-box.png" , outputPath ) ;
403
403
}
404
+
405
+ [ PlaywrightTest ( "locator-screenshot.spec.ts" , "should hide elements based on attr" ) ]
406
+ public async Task ShouldHideElementsBasedOnAttr ( )
407
+ {
408
+ await Page . GotoAsync ( Server . Prefix + "/grid.html" ) ;
409
+ var locator = Page . Locator ( "div" ) . Nth ( 5 ) ;
410
+ await locator . EvaluateAsync ( "element => element.setAttribute('data-test-screenshot', 'red-background')" ) ;
411
+ var screenshot = await locator . ScreenshotAsync ( new ( )
412
+ {
413
+ Style = @"[data-test-screenshot=""red-background""] {
414
+ background-color: red !important;
415
+ }" ,
416
+ } ) ;
417
+ PlaywrightAssert . ToMatchSnapshot ( "grid-cell-5-red.png" , screenshot ) ;
418
+ }
404
419
}
Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ public async Task<byte[]> ScreenshotAsync(ElementHandleScreenshotOptions options
105
105
[ "scale" ] = options . Scale ,
106
106
[ "quality" ] = options . Quality ,
107
107
[ "maskColor" ] = options . MaskColor ,
108
+ [ "style" ] = options . Style ,
108
109
} ;
109
110
if ( options . Mask != null )
110
111
{
You can’t perform that action at this time.
0 commit comments