diff --git a/docs/app/core-concepts/open-mode.mdx b/docs/app/core-concepts/open-mode.mdx index ea937ea614..0ce1003cf7 100644 --- a/docs/app/core-concepts/open-mode.mdx +++ b/docs/app/core-concepts/open-mode.mdx @@ -391,14 +391,14 @@ it('intercept command log', () => { ## Preview pane -The right-hand side of the Test Runner is where the Application or Component +The right-hand side of the App is where the Application or Component Under Test is rendered. ### Application Under Test In [E2E Testing](/app/core-concepts/testing-types#What-is-E2E-Testing), -the right-hand side of the Test Runner is used to display the Application Under +the right-hand side of the App is used to display the Application Under Test (AUT): the application that was navigated to using a [`cy.visit()`](/api/commands/visit) or any subsequent routing calls made from the visited application. @@ -407,7 +407,6 @@ In the example below, we wrote the following code in our test file: ```javascript cy.visit('https://example.cypress.io') - cy.title().should('include', 'Kitchen Sink') ``` @@ -504,14 +503,14 @@ available for debugging. alt="Cypress app showing mounted component and password assertion" /> -The CUT also displays in the size and orientation specified in your tests. You +The AUT also displays in the size and orientation specified in your tests. You can change the size or orientation with the [`cy.viewport()`](/api/commands/viewport) command or in your -[Cypress configuration](/app/references/configuration#Viewport). If the CUT +[Cypress configuration](/app/references/configuration#Viewport). If the AUT does not fit within the current browser window, it is scaled appropriately to fit within the window. -The current size and scale of the CUT is displayed in the top right corner of +The current size and scale of the AUT is displayed in the top right corner of the window. The image below shows that our application is displaying at `500px` width, @@ -530,14 +529,6 @@ that prevent the tests from running. alt="Cypress app showing error as application under test" /> -:::caution - -Internally, the AUT renders within an iframe. This can sometimes cause -unexpected behaviors -[explained here.](/api/commands/window#Cypress-uses-2-different-windows) - -::: - ## Selector Playground The Selector Playground is an interactive feature that helps you: diff --git a/docs/app/end-to-end-testing/testing-your-app.mdx b/docs/app/end-to-end-testing/testing-your-app.mdx index ca2e2d870e..bcc233a515 100644 --- a/docs/app/end-to-end-testing/testing-your-app.mdx +++ b/docs/app/end-to-end-testing/testing-your-app.mdx @@ -101,7 +101,7 @@ touch cypress/e2e/home_page.cy.js Once that file is created, you should see it in the list of spec files. @@ -129,7 +129,7 @@ it('successfully loads', () => { --> diff --git a/docs/app/end-to-end-testing/writing-your-first-end-to-end-test.mdx b/docs/app/end-to-end-testing/writing-your-first-end-to-end-test.mdx index f92d0a0b05..4385c11223 100644 --- a/docs/app/end-to-end-testing/writing-your-first-end-to-end-test.mdx +++ b/docs/app/end-to-end-testing/writing-your-first-end-to-end-test.mdx @@ -93,7 +93,7 @@ see Cypress display the suite, the test and your first assertion (which should be passing in green). @@ -136,7 +136,7 @@ describe('My First Test', () => { --> @@ -274,7 +274,7 @@ describe('My First Test', () => { --> diff --git a/docs/app/guides/cross-browser-testing.mdx b/docs/app/guides/cross-browser-testing.mdx index 66e5589652..23c5d5d008 100644 --- a/docs/app/guides/cross-browser-testing.mdx +++ b/docs/app/guides/cross-browser-testing.mdx @@ -29,7 +29,7 @@ system or CI environment. A full list of detected browsers is displayed within the browser selection menu of [Cypress](/app/core-concepts/open-mode). diff --git a/docs/app/guides/network-requests.mdx b/docs/app/guides/network-requests.mdx index 884097a597..db969299bb 100644 --- a/docs/app/guides/network-requests.mdx +++ b/docs/app/guides/network-requests.mdx @@ -211,7 +211,7 @@ When you use [`cy.intercept()`](/api/commands/intercept) to define a route, Cypress displays this under "Routes" in the Command Log. @@ -433,7 +433,7 @@ it('test', () => { --> diff --git a/docs/app/guides/test-retries.mdx b/docs/app/guides/test-retries.mdx index 048e4545c5..234ee31273 100644 --- a/docs/app/guides/test-retries.mdx +++ b/docs/app/guides/test-retries.mdx @@ -92,7 +92,7 @@ Assuming we have configured test retries with **2** retry attempts (for a total will mark the test as failed and then move on to run any remaining tests. diff --git a/docs/app/references/configuration.mdx b/docs/app/references/configuration.mdx index 047ef82391..49410cf1a6 100644 --- a/docs/app/references/configuration.mdx +++ b/docs/app/references/configuration.mdx @@ -460,7 +460,7 @@ highlighted to show where the value has been set via the following ways: - [setupNodeEvents](#setupNodeEvents) @@ -529,7 +529,7 @@ send a `503` status code. As a convenience it also sets a matched. diff --git a/docs/app/references/launching-browsers.mdx b/docs/app/references/launching-browsers.mdx index 2d3792e7d2..94c8e48711 100644 --- a/docs/app/references/launching-browsers.mdx +++ b/docs/app/references/launching-browsers.mdx @@ -53,7 +53,7 @@ Cypress automatically detects available browsers on your OS. You can switch the browser by using the drop down near the top right corner: @@ -398,7 +398,7 @@ Once selected, the Brave browser is detected using the same approach as any other browser of the `chromium` family. @@ -478,7 +478,7 @@ You might notice that if you already have the browser open you will see two of the same browser icons in your dock. @@ -495,7 +495,7 @@ Cypress look different than regular sessions. You'll see a darker theme around the chrome of the browser. You'll always be able to visually distinguish these. diff --git a/docs/cloud/account-management/data-storage-and-masking.mdx b/docs/cloud/account-management/data-storage-and-masking.mdx index e0e1633aec..206833451f 100644 --- a/docs/cloud/account-management/data-storage-and-masking.mdx +++ b/docs/cloud/account-management/data-storage-and-masking.mdx @@ -174,7 +174,7 @@ Users can mask passwords in the Cypress Command Log by using a custom command li Cypress allows users to block requests from specified hosts. [See our blockHosts configuration guide.](/app/references/configuration#blockHosts) diff --git "a/static/img/accessibility/Screenshot 2024-06-27 at 10.45.16\342\200\257AM.png" "b/static/img/accessibility/Screenshot 2024-06-27 at 10.45.16\342\200\257AM.png" deleted file mode 100644 index c52237f36c..0000000000 Binary files "a/static/img/accessibility/Screenshot 2024-06-27 at 10.45.16\342\200\257AM.png" and /dev/null differ diff --git "a/static/img/accessibility/Screenshot 2024-09-16 at 11.59.40\342\200\257AM.png" "b/static/img/accessibility/Screenshot 2024-09-16 at 11.59.40\342\200\257AM.png" deleted file mode 100644 index aec6d76384..0000000000 Binary files "a/static/img/accessibility/Screenshot 2024-09-16 at 11.59.40\342\200\257AM.png" and /dev/null differ diff --git a/static/img/accessibility/image (1).png b/static/img/accessibility/image (1).png deleted file mode 100644 index 98c8a87846..0000000000 Binary files a/static/img/accessibility/image (1).png and /dev/null differ diff --git a/static/img/accessibility/image.png b/static/img/accessibility/image.png deleted file mode 100644 index 1b75b1601a..0000000000 Binary files a/static/img/accessibility/image.png and /dev/null differ diff --git a/static/img/api/debug/failed-log.png b/static/img/api/debug/failed-log.png deleted file mode 100644 index 342e1fdcb3..0000000000 Binary files a/static/img/api/debug/failed-log.png and /dev/null differ diff --git a/static/img/api/route/console-log-shows-if-route-was-stubbed-also.png b/static/img/api/route/console-log-shows-if-route-was-stubbed-also.png deleted file mode 100644 index c22c927cbb..0000000000 Binary files a/static/img/api/route/console-log-shows-if-route-was-stubbed-also.png and /dev/null differ diff --git a/static/img/api/route/console-log-shows-status-duration-response-request-and-other-data-for-routing.png b/static/img/api/route/console-log-shows-status-duration-response-request-and-other-data-for-routing.png deleted file mode 100644 index bfc598fcc3..0000000000 Binary files a/static/img/api/route/console-log-shows-status-duration-response-request-and-other-data-for-routing.png and /dev/null differ diff --git a/static/img/api/route/routing-table-displayed-in-command-log-for-cy-route.png b/static/img/api/route/routing-table-displayed-in-command-log-for-cy-route.png deleted file mode 100644 index 8d199319da..0000000000 Binary files a/static/img/api/route/routing-table-displayed-in-command-log-for-cy-route.png and /dev/null differ diff --git a/static/img/api/route/some-xhr-responses-including-200-and-500-status-codes.png b/static/img/api/route/some-xhr-responses-including-200-and-500-status-codes.png deleted file mode 100644 index 95d52ef34f..0000000000 Binary files a/static/img/api/route/some-xhr-responses-including-200-and-500-status-codes.png and /dev/null differ diff --git a/static/img/api/route/xhr-stub-versus-not-stubbed-routes-in-command-log.png b/static/img/api/route/xhr-stub-versus-not-stubbed-routes-in-command-log.png deleted file mode 100644 index eb8be1877a..0000000000 Binary files a/static/img/api/route/xhr-stub-versus-not-stubbed-routes-in-command-log.png and /dev/null differ diff --git a/static/img/api/session/session-collapsed-saved.png b/static/img/api/session/session-collapsed-saved.png deleted file mode 100644 index 3e2cd2ea9f..0000000000 Binary files a/static/img/api/session/session-collapsed-saved.png and /dev/null differ diff --git a/static/img/app/component-testing/create-from-component-added-vue.jpg b/static/img/app/component-testing/create-from-component-added-vue.jpg deleted file mode 100644 index d39629bee2..0000000000 Binary files a/static/img/app/component-testing/create-from-component-added-vue.jpg and /dev/null differ diff --git a/static/img/app/component-testing/create-from-component-react.jpg b/static/img/app/component-testing/create-from-component-react.jpg deleted file mode 100644 index 7952b5c965..0000000000 Binary files a/static/img/app/component-testing/create-from-component-react.jpg and /dev/null differ diff --git a/static/img/app/component-testing/create-from-component-vue.jpg b/static/img/app/component-testing/create-from-component-vue.jpg deleted file mode 100644 index a9a601ed8a..0000000000 Binary files a/static/img/app/component-testing/create-from-component-vue.jpg and /dev/null differ diff --git a/static/img/app/component-testing/create-from-vue-component-card.png b/static/img/app/component-testing/create-from-vue-component-card.png deleted file mode 100644 index 444c6b3340..0000000000 Binary files a/static/img/app/component-testing/create-from-vue-component-card.png and /dev/null differ diff --git a/static/img/app/component-testing/create-from-vue-component-list.png b/static/img/app/component-testing/create-from-vue-component-list.png deleted file mode 100644 index 2c9f7ec8f4..0000000000 Binary files a/static/img/app/component-testing/create-from-vue-component-list.png and /dev/null differ diff --git a/static/img/app/component-testing/create-your-first-spec-vue.jpg b/static/img/app/component-testing/create-your-first-spec-vue.jpg deleted file mode 100644 index 3e4f757033..0000000000 Binary files a/static/img/app/component-testing/create-your-first-spec-vue.jpg and /dev/null differ diff --git a/static/img/app/component-testing/create-your-first-spec.jpg b/static/img/app/component-testing/create-your-first-spec.jpg deleted file mode 100644 index 43daa39948..0000000000 Binary files a/static/img/app/component-testing/create-your-first-spec.jpg and /dev/null differ diff --git a/static/img/app/component-testing/cy-mount-must-be-implemented.png b/static/img/app/component-testing/cy-mount-must-be-implemented.png deleted file mode 100644 index ae885f0a88..0000000000 Binary files a/static/img/app/component-testing/cy-mount-must-be-implemented.png and /dev/null differ diff --git a/static/img/app/component-testing/dependency-detection-angular.jpg b/static/img/app/component-testing/dependency-detection-angular.jpg deleted file mode 100644 index 029d41fc58..0000000000 Binary files a/static/img/app/component-testing/dependency-detection-angular.jpg and /dev/null differ diff --git a/static/img/app/component-testing/dependency-detection-svelte.jpg b/static/img/app/component-testing/dependency-detection-svelte.jpg deleted file mode 100644 index 1fa6eed211..0000000000 Binary files a/static/img/app/component-testing/dependency-detection-svelte.jpg and /dev/null differ diff --git a/static/img/app/component-testing/dependency-detection-svelte.png b/static/img/app/component-testing/dependency-detection-svelte.png deleted file mode 100644 index a56c250f2e..0000000000 Binary files a/static/img/app/component-testing/dependency-detection-svelte.png and /dev/null differ diff --git a/static/img/app/component-testing/dependency-detection-vue.jpg b/static/img/app/component-testing/dependency-detection-vue.jpg deleted file mode 100644 index 8bf303f7c6..0000000000 Binary files a/static/img/app/component-testing/dependency-detection-vue.jpg and /dev/null differ diff --git a/static/img/app/component-testing/first-test-run-angular.jpg b/static/img/app/component-testing/first-test-run-angular.jpg deleted file mode 100644 index fdd6151968..0000000000 Binary files a/static/img/app/component-testing/first-test-run-angular.jpg and /dev/null differ diff --git a/static/img/app/component-testing/first-test-run-angular.png b/static/img/app/component-testing/first-test-run-angular.png deleted file mode 100644 index b2cf02f053..0000000000 Binary files a/static/img/app/component-testing/first-test-run-angular.png and /dev/null differ diff --git a/static/img/app/component-testing/first-test-run-react.png b/static/img/app/component-testing/first-test-run-react.png deleted file mode 100644 index af32293aa8..0000000000 Binary files a/static/img/app/component-testing/first-test-run-react.png and /dev/null differ diff --git a/static/img/app/component-testing/first-test-run-svelte.jpg b/static/img/app/component-testing/first-test-run-svelte.jpg deleted file mode 100644 index c64b83800f..0000000000 Binary files a/static/img/app/component-testing/first-test-run-svelte.jpg and /dev/null differ diff --git a/static/img/app/component-testing/first-test-run-svelte.png b/static/img/app/component-testing/first-test-run-svelte.png deleted file mode 100644 index dc1e6ce683..0000000000 Binary files a/static/img/app/component-testing/first-test-run-svelte.png and /dev/null differ diff --git a/static/img/app/component-testing/first-test-run-vue.jpg b/static/img/app/component-testing/first-test-run-vue.jpg deleted file mode 100644 index ab13ab58a5..0000000000 Binary files a/static/img/app/component-testing/first-test-run-vue.jpg and /dev/null differ diff --git a/static/img/app/component-testing/first-test-run-vue.png b/static/img/app/component-testing/first-test-run-vue.png deleted file mode 100644 index 2a3dfb5462..0000000000 Binary files a/static/img/app/component-testing/first-test-run-vue.png and /dev/null differ diff --git a/static/img/app/component-testing/project-setup-angular.jpg b/static/img/app/component-testing/project-setup-angular.jpg deleted file mode 100644 index 87da0f6554..0000000000 Binary files a/static/img/app/component-testing/project-setup-angular.jpg and /dev/null differ diff --git a/static/img/app/component-testing/project-setup-angular.png b/static/img/app/component-testing/project-setup-angular.png deleted file mode 100644 index b764895ac9..0000000000 Binary files a/static/img/app/component-testing/project-setup-angular.png and /dev/null differ diff --git a/static/img/app/component-testing/project-setup-svelte.jpg b/static/img/app/component-testing/project-setup-svelte.jpg deleted file mode 100644 index 2e2ae4a15d..0000000000 Binary files a/static/img/app/component-testing/project-setup-svelte.jpg and /dev/null differ diff --git a/static/img/app/component-testing/project-setup-svelte.png b/static/img/app/component-testing/project-setup-svelte.png deleted file mode 100644 index 2a12fddfc9..0000000000 Binary files a/static/img/app/component-testing/project-setup-svelte.png and /dev/null differ diff --git a/static/img/app/component-testing/project-setup-vue.jpg b/static/img/app/component-testing/project-setup-vue.jpg deleted file mode 100644 index b34dd842b5..0000000000 Binary files a/static/img/app/component-testing/project-setup-vue.jpg and /dev/null differ diff --git a/static/img/app/component-testing/project-setup-vue.png b/static/img/app/component-testing/project-setup-vue.png deleted file mode 100644 index 476bb62a72..0000000000 Binary files a/static/img/app/component-testing/project-setup-vue.png and /dev/null differ diff --git a/static/img/app/component-testing/scaffolded-files-angular.png b/static/img/app/component-testing/scaffolded-files-angular.png deleted file mode 100644 index e892bfee30..0000000000 Binary files a/static/img/app/component-testing/scaffolded-files-angular.png and /dev/null differ diff --git a/static/img/app/component-testing/scaffolded-files-svelte.png b/static/img/app/component-testing/scaffolded-files-svelte.png deleted file mode 100644 index fa4dfd46ef..0000000000 Binary files a/static/img/app/component-testing/scaffolded-files-svelte.png and /dev/null differ diff --git a/static/img/app/component-testing/select-browser.png b/static/img/app/component-testing/select-browser.png deleted file mode 100644 index b51cf4428b..0000000000 Binary files a/static/img/app/component-testing/select-browser.png and /dev/null differ diff --git a/static/img/app/component-testing/select-test-type.png b/static/img/app/component-testing/select-test-type.png deleted file mode 100644 index 236f8bc9aa..0000000000 Binary files a/static/img/app/component-testing/select-test-type.png and /dev/null differ diff --git a/static/img/app/configuration/firefox-gc-interval-in-command-log.jpg b/static/img/app/configuration/firefox-gc-interval-in-command-log.jpg deleted file mode 100644 index 36cc647b86..0000000000 Binary files a/static/img/app/configuration/firefox-gc-interval-in-command-log.jpg and /dev/null differ diff --git a/static/img/app/configuration/see-resolved-configuration.jpg b/static/img/app/configuration/see-resolved-configuration.jpg deleted file mode 100644 index 0804874acc..0000000000 Binary files a/static/img/app/configuration/see-resolved-configuration.jpg and /dev/null differ diff --git a/static/img/app/configuration/v10/see-resolved-configuration.png b/static/img/app/configuration/see-resolved-configuration.png similarity index 100% rename from static/img/app/configuration/v10/see-resolved-configuration.png rename to static/img/app/configuration/see-resolved-configuration.png diff --git a/static/img/app/configuration/test-runner-settings-nodejs-version.jpg b/static/img/app/configuration/test-runner-settings-nodejs-version.jpg deleted file mode 100644 index 9d170bfc24..0000000000 Binary files a/static/img/app/configuration/test-runner-settings-nodejs-version.jpg and /dev/null differ diff --git a/static/img/app/core-concepts/command-log-with-specs.png b/static/img/app/core-concepts/command-log-with-specs.png deleted file mode 100644 index dca65ffcb6..0000000000 Binary files a/static/img/app/core-concepts/command-log-with-specs.png and /dev/null differ diff --git a/static/img/app/core-concepts/gui-diagram.png b/static/img/app/core-concepts/gui-diagram.png deleted file mode 100644 index f4bf8cbfec..0000000000 Binary files a/static/img/app/core-concepts/gui-diagram.png and /dev/null differ diff --git a/static/img/app/cross-browser-testing/v10/browser-select-FF.png b/static/img/app/cross-browser-testing/browser-select-FF.png similarity index 100% rename from static/img/app/cross-browser-testing/v10/browser-select-FF.png rename to static/img/app/cross-browser-testing/browser-select-FF.png diff --git a/static/img/app/cypress-app/copy-selector-in-selector-playground.gif b/static/img/app/cypress-app/copy-selector-in-selector-playground.gif deleted file mode 100644 index 8c449c049c..0000000000 Binary files a/static/img/app/cypress-app/copy-selector-in-selector-playground.gif and /dev/null differ diff --git a/static/img/app/cypress-app/cy-contains-in-selector-playground.gif b/static/img/app/cypress-app/cy-contains-in-selector-playground.gif deleted file mode 100644 index 1e0df7fe16..0000000000 Binary files a/static/img/app/cypress-app/cy-contains-in-selector-playground.gif and /dev/null differ diff --git a/static/img/app/cypress-app/gui-diagram.png b/static/img/app/cypress-app/gui-diagram.png deleted file mode 100644 index 27690678ee..0000000000 Binary files a/static/img/app/cypress-app/gui-diagram.png and /dev/null differ diff --git a/static/img/app/cypress-app/open-selector-playground.gif b/static/img/app/cypress-app/open-selector-playground.gif deleted file mode 100644 index 56258fe5f5..0000000000 Binary files a/static/img/app/cypress-app/open-selector-playground.gif and /dev/null differ diff --git a/static/img/app/cypress-app/turn-off-highlight-in-selector-playground.gif b/static/img/app/cypress-app/turn-off-highlight-in-selector-playground.gif deleted file mode 100644 index 3b947a4c0a..0000000000 Binary files a/static/img/app/cypress-app/turn-off-highlight-in-selector-playground.gif and /dev/null differ diff --git a/static/img/app/cypress-app/typing-a-selector-to-find-in-playground.gif b/static/img/app/cypress-app/typing-a-selector-to-find-in-playground.gif deleted file mode 100644 index aa6bc24769..0000000000 Binary files a/static/img/app/cypress-app/typing-a-selector-to-find-in-playground.gif and /dev/null differ diff --git a/static/img/app/cypress-app/v10/application-under-test.png b/static/img/app/cypress-app/v10/application-under-test.png deleted file mode 100644 index 49eddc5779..0000000000 Binary files a/static/img/app/cypress-app/v10/application-under-test.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/aut-error-ct.png b/static/img/app/cypress-app/v10/aut-error-ct.png deleted file mode 100644 index c2f7e36b7d..0000000000 Binary files a/static/img/app/cypress-app/v10/aut-error-ct.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/aut-error-e2e.png b/static/img/app/cypress-app/v10/aut-error-e2e.png deleted file mode 100644 index 4245c3da53..0000000000 Binary files a/static/img/app/cypress-app/v10/aut-error-e2e.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/command-failure-error.png b/static/img/app/cypress-app/v10/command-failure-error.png deleted file mode 100644 index 0e6f44a20e..0000000000 Binary files a/static/img/app/cypress-app/v10/command-failure-error.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/command-log.png b/static/img/app/cypress-app/v10/command-log.png deleted file mode 100644 index 1d1426f622..0000000000 Binary files a/static/img/app/cypress-app/v10/command-log.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/first-test-click-revert.png b/static/img/app/cypress-app/v10/first-test-click-revert.png deleted file mode 100644 index c3f5c4e672..0000000000 Binary files a/static/img/app/cypress-app/v10/first-test-click-revert.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/first-test-console-output.png b/static/img/app/cypress-app/v10/first-test-console-output.png deleted file mode 100644 index 5f1c76e6ce..0000000000 Binary files a/static/img/app/cypress-app/v10/first-test-console-output.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/first-test-hover-contains.png b/static/img/app/cypress-app/v10/first-test-hover-contains.png deleted file mode 100644 index 4a6036b877..0000000000 Binary files a/static/img/app/cypress-app/v10/first-test-hover-contains.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/first-test-page-load.png b/static/img/app/cypress-app/v10/first-test-page-load.png deleted file mode 100644 index 6dcc6e302d..0000000000 Binary files a/static/img/app/cypress-app/v10/first-test-page-load.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/first-test-paused.png b/static/img/app/cypress-app/v10/first-test-paused.png deleted file mode 100644 index ae6bb200f8..0000000000 Binary files a/static/img/app/cypress-app/v10/first-test-paused.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/first-test-url-revert.png b/static/img/app/cypress-app/v10/first-test-url-revert.png deleted file mode 100644 index f288f176f4..0000000000 Binary files a/static/img/app/cypress-app/v10/first-test-url-revert.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/instrument-panel-routes.png b/static/img/app/cypress-app/v10/instrument-panel-routes.png deleted file mode 100644 index 30b713cd7e..0000000000 Binary files a/static/img/app/cypress-app/v10/instrument-panel-routes.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/instrument-panel-spies.png b/static/img/app/cypress-app/v10/instrument-panel-spies.png deleted file mode 100644 index 423e3a10c9..0000000000 Binary files a/static/img/app/cypress-app/v10/instrument-panel-spies.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/instrument-panel-stubs.png b/static/img/app/cypress-app/v10/instrument-panel-stubs.png deleted file mode 100644 index 65b920b981..0000000000 Binary files a/static/img/app/cypress-app/v10/instrument-panel-stubs.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/keyboard-shortcuts.png b/static/img/app/cypress-app/v10/keyboard-shortcuts.png deleted file mode 100644 index df64ca6f74..0000000000 Binary files a/static/img/app/cypress-app/v10/keyboard-shortcuts.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/open-file-in-IDE.gif b/static/img/app/cypress-app/v10/open-file-in-IDE.gif deleted file mode 100644 index 3ecd9a19ca..0000000000 Binary files a/static/img/app/cypress-app/v10/open-file-in-IDE.gif and /dev/null differ diff --git a/static/img/app/cypress-app/v10/viewport-scaling-ct.png b/static/img/app/cypress-app/v10/viewport-scaling-ct.png deleted file mode 100644 index 3fa80da8c2..0000000000 Binary files a/static/img/app/cypress-app/v10/viewport-scaling-ct.png and /dev/null differ diff --git a/static/img/app/cypress-app/v10/viewport-scaling.png b/static/img/app/cypress-app/v10/viewport-scaling.png deleted file mode 100644 index ff358c28d8..0000000000 Binary files a/static/img/app/cypress-app/v10/viewport-scaling.png and /dev/null differ diff --git a/static/img/app/get-started/ct/v10/all-passing-tests.png b/static/img/app/get-started/ct/v10/all-passing-tests.png deleted file mode 100644 index 07db7e110e..0000000000 Binary files a/static/img/app/get-started/ct/v10/all-passing-tests.png and /dev/null differ diff --git a/static/img/app/get-started/ct/v10/describe-block.png b/static/img/app/get-started/ct/v10/describe-block.png deleted file mode 100644 index c3bd98b87a..0000000000 Binary files a/static/img/app/get-started/ct/v10/describe-block.png and /dev/null differ diff --git a/static/img/app/get-started/ct/v10/failing-hello-world-test.png b/static/img/app/get-started/ct/v10/failing-hello-world-test.png deleted file mode 100644 index 13181b271b..0000000000 Binary files a/static/img/app/get-started/ct/v10/failing-hello-world-test.png and /dev/null differ diff --git a/static/img/app/get-started/ct/v10/mounted-component.png b/static/img/app/get-started/ct/v10/mounted-component.png deleted file mode 100644 index a7d3f57171..0000000000 Binary files a/static/img/app/get-started/ct/v10/mounted-component.png and /dev/null differ diff --git a/static/img/app/get-started/ct/v10/no-tests-message.png b/static/img/app/get-started/ct/v10/no-tests-message.png deleted file mode 100644 index 6741b60e7c..0000000000 Binary files a/static/img/app/get-started/ct/v10/no-tests-message.png and /dev/null differ diff --git a/static/img/app/get-started/ct/v10/passing-hello-world-test.png b/static/img/app/get-started/ct/v10/passing-hello-world-test.png deleted file mode 100644 index 80c59275f7..0000000000 Binary files a/static/img/app/get-started/ct/v10/passing-hello-world-test.png and /dev/null differ diff --git a/static/img/app/get-started/ct/v10/spec-file-list.png b/static/img/app/get-started/ct/v10/spec-file-list.png deleted file mode 100644 index bde5c13ae9..0000000000 Binary files a/static/img/app/get-started/ct/v10/spec-file-list.png and /dev/null differ diff --git a/static/img/app/get-started/ct/v10/spies-stubs-panel-and-rendered-component.png b/static/img/app/get-started/ct/v10/spies-stubs-panel-and-rendered-component.png deleted file mode 100644 index c398f3bd06..0000000000 Binary files a/static/img/app/get-started/ct/v10/spies-stubs-panel-and-rendered-component.png and /dev/null differ diff --git a/static/img/app/get-started/ct/v10/spies-stubs-panel.png b/static/img/app/get-started/ct/v10/spies-stubs-panel.png deleted file mode 100644 index a48e2b79bc..0000000000 Binary files a/static/img/app/get-started/ct/v10/spies-stubs-panel.png and /dev/null differ diff --git a/static/img/app/get-started/e2e/v10/first-test-failing-contains.png b/static/img/app/get-started/e2e/first-test-failing-contains.png similarity index 100% rename from static/img/app/get-started/e2e/v10/first-test-failing-contains.png rename to static/img/app/get-started/e2e/first-test-failing-contains.png diff --git a/static/img/app/get-started/e2e/v10/first-test-failing.png b/static/img/app/get-started/e2e/first-test-failing.png similarity index 100% rename from static/img/app/get-started/e2e/v10/first-test-failing.png rename to static/img/app/get-started/e2e/first-test-failing.png diff --git a/static/img/app/get-started/e2e/v10/first-test.png b/static/img/app/get-started/e2e/first-test.png similarity index 100% rename from static/img/app/get-started/e2e/v10/first-test.png rename to static/img/app/get-started/e2e/first-test.png diff --git a/static/img/app/get-started/e2e/v10/testing-your-app-home-page-spec.png b/static/img/app/get-started/e2e/testing-your-app-home-page-spec.png similarity index 100% rename from static/img/app/get-started/e2e/v10/testing-your-app-home-page-spec.png rename to static/img/app/get-started/e2e/testing-your-app-home-page-spec.png diff --git a/static/img/app/get-started/e2e/v10/testing-your-app-visit-fail.png b/static/img/app/get-started/e2e/testing-your-app-visit-fail.png similarity index 100% rename from static/img/app/get-started/e2e/v10/testing-your-app-visit-fail.png rename to static/img/app/get-started/e2e/testing-your-app-visit-fail.png diff --git a/static/img/app/launching-browsers/v10/brave-running-tests.png b/static/img/app/launching-browsers/brave-running-tests.png similarity index 100% rename from static/img/app/launching-browsers/v10/brave-running-tests.png rename to static/img/app/launching-browsers/brave-running-tests.png diff --git a/static/img/app/launching-browsers/v10/browser-list-dropdown.png b/static/img/app/launching-browsers/browser-list-dropdown.png similarity index 100% rename from static/img/app/launching-browsers/v10/browser-list-dropdown.png rename to static/img/app/launching-browsers/browser-list-dropdown.png diff --git a/static/img/app/launching-browsers/v10/cypress-browser-chrome.png b/static/img/app/launching-browsers/cypress-browser-chrome.png similarity index 100% rename from static/img/app/launching-browsers/v10/cypress-browser-chrome.png rename to static/img/app/launching-browsers/cypress-browser-chrome.png diff --git a/static/img/app/launching-browsers/v10/multiple-chrome-icons.png b/static/img/app/launching-browsers/multiple-chrome-icons.png similarity index 100% rename from static/img/app/launching-browsers/v10/multiple-chrome-icons.png rename to static/img/app/launching-browsers/multiple-chrome-icons.png diff --git a/static/img/app/migrating-to-cypress/Auto-reloading.mp4 b/static/img/app/migrating-to-cypress/Auto-reloading.mp4 deleted file mode 100644 index 80a76e43ee..0000000000 Binary files a/static/img/app/migrating-to-cypress/Auto-reloading.mp4 and /dev/null differ diff --git a/static/img/app/network-requests/v10/clear-source-of-failure.png b/static/img/app/network-requests/clear-source-of-failure.png similarity index 100% rename from static/img/app/network-requests/v10/clear-source-of-failure.png rename to static/img/app/network-requests/clear-source-of-failure.png diff --git a/static/img/app/network-requests/v10/server-routing-table.png b/static/img/app/network-requests/server-routing-table.png similarity index 100% rename from static/img/app/network-requests/v10/server-routing-table.png rename to static/img/app/network-requests/server-routing-table.png diff --git a/static/img/app/parallelization/project-run-delay-setting.png b/static/img/app/parallelization/project-run-delay-setting.png deleted file mode 100644 index 72ce72771c..0000000000 Binary files a/static/img/app/parallelization/project-run-delay-setting.png and /dev/null differ diff --git a/static/img/app/parallelization/timeline-view.png b/static/img/app/parallelization/timeline-view.png deleted file mode 100644 index 504ae81edd..0000000000 Binary files a/static/img/app/parallelization/timeline-view.png and /dev/null differ diff --git a/static/img/app/references/v10/blocked-host.png b/static/img/app/references/blocked-host.png similarity index 100% rename from static/img/app/references/v10/blocked-host.png rename to static/img/app/references/blocked-host.png diff --git a/static/img/app/retry-ability/v10/click-twice.gif b/static/img/app/retry-ability/v10/click-twice.gif deleted file mode 100644 index efff50aa86..0000000000 Binary files a/static/img/app/retry-ability/v10/click-twice.gif and /dev/null differ diff --git a/static/img/app/retry-ability/v10/delay-click.png b/static/img/app/retry-ability/v10/delay-click.png deleted file mode 100644 index 379e53bbe2..0000000000 Binary files a/static/img/app/retry-ability/v10/delay-click.png and /dev/null differ diff --git a/static/img/app/retry-ability/v10/eq.gif b/static/img/app/retry-ability/v10/eq.gif deleted file mode 100644 index 3590b54c98..0000000000 Binary files a/static/img/app/retry-ability/v10/eq.gif and /dev/null differ diff --git a/static/img/app/retry-ability/v10/random-number-callback.gif b/static/img/app/retry-ability/v10/random-number-callback.gif deleted file mode 100644 index 7a5515e8b3..0000000000 Binary files a/static/img/app/retry-ability/v10/random-number-callback.gif and /dev/null differ diff --git a/static/img/app/retry-ability/v10/random-number-first-attempt.png b/static/img/app/retry-ability/v10/random-number-first-attempt.png deleted file mode 100644 index 46341f12bd..0000000000 Binary files a/static/img/app/retry-ability/v10/random-number-first-attempt.png and /dev/null differ diff --git a/static/img/app/retry-ability/v10/random-number.gif b/static/img/app/retry-ability/v10/random-number.gif deleted file mode 100644 index 74fd83efa1..0000000000 Binary files a/static/img/app/retry-ability/v10/random-number.gif and /dev/null differ diff --git a/static/img/app/retry-ability/v10/second-assertion-fails.gif b/static/img/app/retry-ability/v10/second-assertion-fails.gif deleted file mode 100644 index 417b5a1465..0000000000 Binary files a/static/img/app/retry-ability/v10/second-assertion-fails.gif and /dev/null differ diff --git a/static/img/app/smart-orchestration/enable-cancel-run.png b/static/img/app/smart-orchestration/enable-cancel-run.png deleted file mode 100644 index 7ccc698a1f..0000000000 Binary files a/static/img/app/smart-orchestration/enable-cancel-run.png and /dev/null differ diff --git a/static/img/app/smart-orchestration/enable-run-failed-specs-first.png b/static/img/app/smart-orchestration/enable-run-failed-specs-first.png deleted file mode 100644 index f46fc0c43b..0000000000 Binary files a/static/img/app/smart-orchestration/enable-run-failed-specs-first.png and /dev/null differ diff --git a/static/img/app/test-retries/v10/attempt-3-fail.png b/static/img/app/test-retries/attempt-3-fail.png similarity index 100% rename from static/img/app/test-retries/v10/attempt-3-fail.png rename to static/img/app/test-retries/attempt-3-fail.png diff --git a/static/img/app/test-retries/v10/attempt-2-start.png b/static/img/app/test-retries/v10/attempt-2-start.png deleted file mode 100644 index d33ce34651..0000000000 Binary files a/static/img/app/test-retries/v10/attempt-2-start.png and /dev/null differ diff --git a/static/img/app/test-retries/v10/attempt-3-start.png b/static/img/app/test-retries/v10/attempt-3-start.png deleted file mode 100644 index a960d062e3..0000000000 Binary files a/static/img/app/test-retries/v10/attempt-3-start.png and /dev/null differ diff --git a/static/img/app/visual-testing/completed-item.png b/static/img/app/visual-testing/completed-item.png deleted file mode 100644 index 7d7e2772a1..0000000000 Binary files a/static/img/app/visual-testing/completed-item.png and /dev/null differ diff --git a/static/img/app/visual-testing/completed-test.gif b/static/img/app/visual-testing/completed-test.gif deleted file mode 100644 index 76eb6118fe..0000000000 Binary files a/static/img/app/visual-testing/completed-test.gif and /dev/null differ diff --git a/static/img/cloud/features/branch-review/branch-review-views.png b/static/img/cloud/features/branch-review/branch-review-views.png deleted file mode 100644 index d9be789649..0000000000 Binary files a/static/img/cloud/features/branch-review/branch-review-views.png and /dev/null differ diff --git a/static/img/cloud/features/branch-review/branch-review.jpg b/static/img/cloud/features/branch-review/branch-review.jpg deleted file mode 100644 index 6ef23bf26c..0000000000 Binary files a/static/img/cloud/features/branch-review/branch-review.jpg and /dev/null differ diff --git a/static/img/cloud/features/branch-review/get-to-branch-review.jpg b/static/img/cloud/features/branch-review/get-to-branch-review.jpg deleted file mode 100644 index ba6b8417cd..0000000000 Binary files a/static/img/cloud/features/branch-review/get-to-branch-review.jpg and /dev/null differ diff --git a/static/img/cloud/features/branch-review/labs-beta.png b/static/img/cloud/features/branch-review/labs-beta.png deleted file mode 100644 index 79b2619e4e..0000000000 Binary files a/static/img/cloud/features/branch-review/labs-beta.png and /dev/null differ diff --git a/static/img/cloud/get-started/introduction/cypress-app-runs-page.jpg b/static/img/cloud/get-started/introduction/cypress-app-runs-page.jpg deleted file mode 100644 index 4f237f3087..0000000000 Binary files a/static/img/cloud/get-started/introduction/cypress-app-runs-page.jpg and /dev/null differ diff --git a/static/img/cloud/get-started/introduction/cypress-app-specs-page.jpg b/static/img/cloud/get-started/introduction/cypress-app-specs-page.jpg deleted file mode 100644 index e711c58269..0000000000 Binary files a/static/img/cloud/get-started/introduction/cypress-app-specs-page.jpg and /dev/null differ diff --git a/static/img/cloud/integrations/slack/enable-slack-integration.jpg b/static/img/cloud/integrations/slack/enable-slack-integration.jpg deleted file mode 100644 index 9211d288e4..0000000000 Binary files a/static/img/cloud/integrations/slack/enable-slack-integration.jpg and /dev/null differ diff --git a/static/img/cloud/integrations/slack/enable-slack-project.jpg b/static/img/cloud/integrations/slack/enable-slack-project.jpg deleted file mode 100644 index 40d7a01e80..0000000000 Binary files a/static/img/cloud/integrations/slack/enable-slack-project.jpg and /dev/null differ diff --git a/static/img/cloud/runs/sidebar-environment.png b/static/img/cloud/runs/sidebar-environment.png deleted file mode 100644 index 724d31cd0d..0000000000 Binary files a/static/img/cloud/runs/sidebar-environment.png and /dev/null differ diff --git a/static/img/cloud/runs/videos-of-recorded-test-run.png b/static/img/cloud/runs/videos-of-recorded-test-run.png deleted file mode 100644 index b3d5f818f6..0000000000 Binary files a/static/img/cloud/runs/videos-of-recorded-test-run.png and /dev/null differ diff --git a/static/img/cloud/sso/okta-download-certificate-for-cypress-dashboard.png b/static/img/cloud/sso/okta-download-certificate-for-cypress-dashboard.png deleted file mode 100644 index 99d7ca6f98..0000000000 Binary files a/static/img/cloud/sso/okta-download-certificate-for-cypress-dashboard.png and /dev/null differ diff --git a/static/img/ui-coverage/image.png b/static/img/ui-coverage/image.png deleted file mode 100644 index d77d6be34d..0000000000 Binary files a/static/img/ui-coverage/image.png and /dev/null differ