Skip to content

Commit 7e243bb

Browse files
update docs to latest changes
1 parent c4f04c2 commit 7e243bb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/visual-testing/integrations/nightwatch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ browser
320320
If you want to see more than what's on the screen, you can take a full-page screenshot. It'll capture everything by scrolling and stitching it together.
321321

322322
:::note
323-
It's recommended to use the `hideAfterFirstScroll` option for all fixed elements on the page.
323+
It's recommended to use the `hideAfterFirstScroll` option for elements like sticky header.
324324
:::
325325

326326
Options:
@@ -333,7 +333,7 @@ Example:
333333

334334
```ts
335335
await browser.sauceVisualCheck('Long content page', {
336-
fullPageConfig: {
336+
fullPage: {
337337
enable: true,
338338
delayAfterScroll: 500,
339339
hideAfterFirstScroll: ["#header"],

docs/visual-testing/integrations/webdriverio.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,10 @@ browser.sauceVisualCheck('Before Login', {
225225

226226
### Full page screenshots
227227

228-
If you want to see more than what's on the screen, you can take a full-page screenshot. It'll capture everything by scrolling and stitching it together.
228+
If you want to see more than what's on the screen, you can take a full-page screenshot. It'll capture everything by scrolling and stitching it together.
229229

230230
:::note
231-
It's recommended to use the `hideAfterFirstScroll` option for all fixed elements on the page.
231+
It's recommended to use the `hideAfterFirstScroll` option for elements like sticky header.
232232
:::
233233

234234
Options:
@@ -241,7 +241,7 @@ Example:
241241

242242
```ts
243243
await browser.sauceVisualCheck('Long content page', {
244-
fullPageConfig: {
244+
fullPage: {
245245
enable: true,
246246
delayAfterScroll: 500,
247247
hideAfterFirstScroll: ["#header"],

0 commit comments

Comments
 (0)