Skip to content

Commit 3edc14f

Browse files
authored
fix(locators): Style attribute in ScreenshotAsync (#2926)
1 parent 9ef9165 commit 3edc14f

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

src/Playwright.Tests/ElementHandleScreenshotTests.cs

+15
Original file line numberDiff line numberDiff line change
@@ -401,4 +401,19 @@ public async Task PathOptionShouldCreateSubdirectories()
401401
await elementHandle.ScreenshotAsync(new() { Path = outputPath });
402402
PlaywrightAssert.ToMatchSnapshot("screenshot-element-bounding-box.png", outputPath);
403403
}
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+
}
404419
}

src/Playwright/Core/ElementHandle.cs

+1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ public async Task<byte[]> ScreenshotAsync(ElementHandleScreenshotOptions options
105105
["scale"] = options.Scale,
106106
["quality"] = options.Quality,
107107
["maskColor"] = options.MaskColor,
108+
["style"] = options.Style,
108109
};
109110
if (options.Mask != null)
110111
{

0 commit comments

Comments
 (0)