@@ -37,7 +37,7 @@ public async Task ShouldWork()
37
37
await Page . EvaluateAsync ( "window.scrollBy(50, 100)" ) ;
38
38
var elementHandle = await Page . QuerySelectorAsync ( ".box:nth-of-type(3)" ) ;
39
39
byte [ ] screenshot = await elementHandle . ScreenshotAsync ( ) ;
40
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-bounding-box.png" , screenshot ) ) ;
40
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-bounding-box.png" , screenshot ) ;
41
41
}
42
42
43
43
[ PlaywrightTest ( "elementhandle-screenshot.spec.ts" , "should take into account padding and border" ) ]
@@ -56,7 +56,7 @@ await Page.SetContentAsync(@"
56
56
<div id=""d""></div>" ) ;
57
57
var elementHandle = await Page . QuerySelectorAsync ( "div#d" ) ;
58
58
byte [ ] screenshot = await elementHandle . ScreenshotAsync ( ) ;
59
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-padding-border.png" , screenshot ) ) ;
59
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-padding-border.png" , screenshot ) ;
60
60
}
61
61
62
62
[ PlaywrightTest ( "elementhandle-screenshot.spec.ts" , "should capture full element when larger than viewport in parallel" ) ]
@@ -84,7 +84,7 @@ await Page.SetContentAsync(@"
84
84
var screenshotTasks = elementHandles . Select ( e => e . ScreenshotAsync ( ) ) . ToArray ( ) ;
85
85
await TaskUtils . WhenAll ( screenshotTasks ) ;
86
86
87
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-larger-than-viewport.png" , screenshotTasks . ElementAt ( 2 ) . Result ) ) ;
87
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-larger-than-viewport.png" , screenshotTasks . ElementAt ( 2 ) . Result ) ;
88
88
}
89
89
90
90
[ PlaywrightTest ( "elementhandle-screenshot.spec.ts" , "should capture full element when larger than viewport" ) ]
@@ -110,7 +110,7 @@ await Page.SetContentAsync(@"
110
110
111
111
var elementHandle = await Page . QuerySelectorAsync ( "div.to-screenshot" ) ;
112
112
byte [ ] screenshot = await elementHandle . ScreenshotAsync ( ) ;
113
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-larger-than-viewport.png" , screenshot ) ) ;
113
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-larger-than-viewport.png" , screenshot ) ;
114
114
await TestUtils . VerifyViewportAsync ( Page , 500 , 500 ) ;
115
115
}
116
116
@@ -136,7 +136,7 @@ await Page.SetContentAsync(@"
136
136
<div class=""to-screenshot""></div>" ) ;
137
137
var elementHandle = await Page . QuerySelectorAsync ( "div.to-screenshot" ) ;
138
138
byte [ ] screenshot = await elementHandle . ScreenshotAsync ( ) ;
139
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-scrolled-into-view.png" , screenshot ) ) ;
139
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-scrolled-into-view.png" , screenshot ) ;
140
140
}
141
141
142
142
[ PlaywrightTest ( "elementhandle-screenshot.spec.ts" , "should scroll 15000px into view" ) ]
@@ -161,7 +161,7 @@ await Page.SetContentAsync(@"
161
161
<div class=""to-screenshot""></div>" ) ;
162
162
var elementHandle = await Page . QuerySelectorAsync ( "div.to-screenshot" ) ;
163
163
byte [ ] screenshot = await elementHandle . ScreenshotAsync ( ) ;
164
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-scrolled-into-view.png" , screenshot ) ) ;
164
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-scrolled-into-view.png" , screenshot ) ;
165
165
}
166
166
167
167
[ PlaywrightTest ( "elementhandle-screenshot.spec.ts" , "should work with a rotated element" ) ]
@@ -179,7 +179,7 @@ await Page.SetContentAsync(@"
179
179
" ) ;
180
180
var elementHandle = await Page . QuerySelectorAsync ( "div" ) ;
181
181
byte [ ] screenshot = await elementHandle . ScreenshotAsync ( ) ;
182
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-rotate.png" , screenshot ) ) ;
182
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-rotate.png" , screenshot ) ;
183
183
}
184
184
185
185
[ PlaywrightTest ( "elementhandle-screenshot.spec.ts" , "should fail to screenshot a detached element" ) ]
@@ -221,7 +221,7 @@ public async Task ShouldWaitForVisible()
221
221
await elementHandle . EvaluateAsync ( "e => e.style.visibility = 'visible'" ) ;
222
222
223
223
byte [ ] screenshot = await task ;
224
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-bounding-box.png" , screenshot ) ) ;
224
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-bounding-box.png" , screenshot ) ;
225
225
}
226
226
227
227
[ PlaywrightTest ( "elementhandle-screenshot.spec.ts" , "should work for an element with fractional dimensions" ) ]
@@ -230,7 +230,7 @@ public async Task ShouldWorkForAnElementWithFractionalDimensions()
230
230
await Page . SetContentAsync ( "<div style=\" width:48.51px;height:19.8px;border:1px solid black;\" ></div>" ) ;
231
231
var elementHandle = await Page . QuerySelectorAsync ( "div" ) ;
232
232
byte [ ] screenshot = await elementHandle . ScreenshotAsync ( ) ;
233
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-fractional.png" , screenshot ) ) ;
233
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-fractional.png" , screenshot ) ;
234
234
}
235
235
236
236
[ PlaywrightTest ( "elementhandle-screenshot.spec.ts" , "should work with a mobile viewport" ) ]
@@ -252,7 +252,7 @@ public async Task ShouldWorkWithAMobileViewport()
252
252
var elementHandle = await page . QuerySelectorAsync ( ".box:nth-of-type(3)" ) ;
253
253
byte [ ] screenshot = await elementHandle . ScreenshotAsync ( ) ;
254
254
255
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-mobile.png" , screenshot ) ) ;
255
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-mobile.png" , screenshot ) ;
256
256
}
257
257
258
258
[ PlaywrightTest ( "elementhandle-screenshot.spec.ts" , "should work with device scale factor" ) ]
@@ -274,7 +274,7 @@ public async Task ShouldWorkWithDeviceScaleFactor()
274
274
var elementHandle = await page . QuerySelectorAsync ( ".box:nth-of-type(3)" ) ;
275
275
byte [ ] screenshot = await elementHandle . ScreenshotAsync ( ) ;
276
276
277
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-mobile-dsf.png" , screenshot ) ) ;
277
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-mobile-dsf.png" , screenshot ) ;
278
278
}
279
279
280
280
[ PlaywrightTest ( "elementhandle-screenshot.spec.ts" , "should work for an element with an offset" ) ]
@@ -283,7 +283,7 @@ public async Task ShouldWorkForAnElementWithAnOffset()
283
283
await Page . SetContentAsync ( "<div style=\" position:absolute; top: 10.3px; left: 20.4px;width:50.3px;height:20.2px;border:1px solid black;\" ></div>" ) ;
284
284
var elementHandle = await Page . QuerySelectorAsync ( "div" ) ;
285
285
byte [ ] screenshot = await elementHandle . ScreenshotAsync ( ) ;
286
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-fractional-offset.png" , screenshot ) ) ;
286
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-fractional-offset.png" , screenshot ) ;
287
287
}
288
288
289
289
[ PlaywrightTest ( "elementhandle-screenshot.spec.ts" , "should take screenshots when default viewport is null" ) ]
@@ -399,6 +399,6 @@ public async Task PathOptionShouldCreateSubdirectories()
399
399
using var tmpDir = new TempDirectory ( ) ;
400
400
string outputPath = Path . Combine ( tmpDir . Path , "these" , "are" , "directories" , "screenshot.png" ) ;
401
401
await elementHandle . ScreenshotAsync ( new ( ) { Path = outputPath } ) ;
402
- Assert . True ( ScreenshotHelper . PixelMatch ( "screenshot-element-bounding-box.png" , outputPath ) ) ;
402
+ PlaywrightAssert . ToMatchSnapshot ( "screenshot-element-bounding-box.png" , outputPath ) ;
403
403
}
404
404
}
0 commit comments