You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`blackout`|`[]`| Array of string selectors used to match elements that should be blacked out when the screenshot is taken. Does not apply to `runner` captures. |
33
-
|`capture`|`'fullPage'`| Which parts of the Cypress Test Runner to capture. This value is ignored for element screenshot captures. Valid values are `viewport`, `fullPage`, or `runner`. When `viewport`, your application under test is captured in the current viewport. When `fullPage`, your application under test is captured in its entirety from top to bottom. When `runner`, the entire browser viewport, including the Cypress Command Log, is captured. For screenshots automatically taken on test failure, capture is always coerced to `runner`. |
34
-
|`disableTimersAndAnimations`|`true`| When true, prevents JavaScript timers (`setTimeout`, `setInterval`, etc) and CSS animations from running while the screenshot is taken. |
35
-
|`scale`|`false`| Whether to scale the app to fit into the browser viewport. This is always coerced to `true` for `runner` captures. |
36
-
|`screenshotOnRunFailure`|`true`| When true, automatically takes a screenshot when there is a failure during `cypress run`. |
37
-
|`overwrite`|`false`| Whether to overwrite duplicate screenshot files with the same file name when saving. |
38
-
|`onBeforeScreenshot`|`null`| A callback before a (non-failure) screenshot is taken. For an element capture, the argument is the element being captured. For other screenshots, the argument is the `$el`. |
39
-
|`onAfterScreenshot`|`null`| A callback after a (non-failure) screenshot is taken. For an element capture, the first argument is the element being captured. For other screenshots, the first argument is the `$el`. The second argument is properties concerning the screenshot, including the path it was saved to and the dimensions of the saved screenshot. |
|`blackout`|`[]`| Array of string selectors used to match elements that should be blacked out when the screenshot is taken. Does not apply to `runner` captures. |
33
+
|`capture`|`'fullPage'`| Which parts of the Cypress Test Runner to capture. This value is ignored for element screenshot captures. Valid values are `viewport`, `fullPage`, or `runner`. When `viewport`, your application under test is captured in the current viewport. When `fullPage`, your application under test is captured in its entirety from top to bottom. When `runner`, the entire browser viewport, including the Cypress Command Log, is captured. For screenshots automatically taken on test failure, capture is always coerced to `runner`. When [Test Replay](/guides/cloud/debugging/test-replay) is enabled and the Runner UI is hidden, a `runner` screenshot will not include the Runner UI and will instead capture the application under test only in the current viewport. |
34
+
|`disableTimersAndAnimations`|`true`| When true, prevents JavaScript timers (`setTimeout`, `setInterval`, etc) and CSS animations from running while the screenshot is taken. |
35
+
|`scale`|`false`| Whether to scale the app to fit into the browser viewport. This is always coerced to `true` for `runner` captures. |
36
+
|`screenshotOnRunFailure`|`true`| When true, automatically takes a screenshot when there is a failure during `cypress run`. |
37
+
|`overwrite`|`false`| Whether to overwrite duplicate screenshot files with the same file name when saving. |
38
+
|`onBeforeScreenshot`|`null`| A callback before a (non-failure) screenshot is taken. For an element capture, the argument is the element being captured. For other screenshots, the argument is the `$el`. |
39
+
|`onAfterScreenshot`|`null`| A callback after a (non-failure) screenshot is taken. For an element capture, the first argument is the element being captured. For other screenshots, the first argument is the `$el`. The second argument is properties concerning the screenshot, including the path it was saved to and the dimensions of the saved screenshot. |
0 commit comments