Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 5 additions & 14 deletions docs/app/core-concepts/open-mode.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 <E2EOnlyBadge />

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.
Expand All @@ -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')
```

Expand Down Expand Up @@ -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,
Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions docs/app/end-to-end-testing/testing-your-app.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<DocsImage
src="/img/app/get-started/e2e/v10/testing-your-app-home-page-spec.png"
src="/img/app/get-started/e2e/testing-your-app-home-page-spec.png"
alt="List of files including home_page.cy.js"
width="75%"
/>
Expand Down Expand Up @@ -129,7 +129,7 @@ it('successfully loads', () => {
-->

<DocsImage
src="/img/app/get-started/e2e/v10/testing-your-app-visit-fail.png"
src="/img/app/get-started/e2e/testing-your-app-visit-fail.png"
alt="Error in Cypress showing cy.visit failed"
width="75%"
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ see Cypress display the suite, the test and your first assertion (which should
be passing in green).

<DocsImage
src="/img/app/get-started/e2e/v10/first-test.png"
src="/img/app/get-started/e2e/first-test.png"
alt="My first test shown passing in Cypress"
/>

Expand Down Expand Up @@ -136,7 +136,7 @@ describe('My First Test', () => {
-->

<DocsImage
src="/img/app/get-started/e2e/v10/first-test-failing.png"
src="/img/app/get-started/e2e/first-test-failing.png"
alt="Failing test"
/>

Expand Down Expand Up @@ -274,7 +274,7 @@ describe('My First Test', () => {
-->

<DocsImage
src="/img/app/get-started/e2e/v10/first-test-failing-contains.png"
src="/img/app/get-started/e2e/first-test-failing-contains.png"
alt="Test failing to not find content 'hype'"
/>

Expand Down
2 changes: 1 addition & 1 deletion docs/app/guides/cross-browser-testing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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).

<DocsImage
src="/img/app/cross-browser-testing/v10/browser-select-FF.png"
src="/img/app/cross-browser-testing/browser-select-FF.png"
alt="Cypress with Firefox selected as the browser"
/>

Expand Down
4 changes: 2 additions & 2 deletions docs/app/guides/network-requests.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<DocsImage
src="/img/app/network-requests/v10/server-routing-table.png"
src="/img/app/network-requests/server-routing-table.png"
alt="Routing Table"
/>

Expand Down Expand Up @@ -433,7 +433,7 @@ it('test', () => {
-->

<DocsImage
src="/img/app/network-requests/v10/clear-source-of-failure.png"
src="/img/app/network-requests/clear-source-of-failure.png"
alt="Wait Failure"
/>

Expand Down
2 changes: 1 addition & 1 deletion docs/app/guides/test-retries.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<DocsImage
src="/img/app/test-retries/v10/attempt-3-fail.png"
src="/img/app/test-retries/attempt-3-fail.png"
alt="Test retries attempt 3 fail"
/>

Expand Down
4 changes: 2 additions & 2 deletions docs/app/references/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ highlighted to show where the value has been set via the following ways:
- [setupNodeEvents](#setupNodeEvents)

<DocsImage
src="/img/app/configuration/v10/see-resolved-configuration.png"
src="/img/app/configuration/see-resolved-configuration.png"
alt="See resolved configuration"
/>

Expand Down Expand Up @@ -529,7 +529,7 @@ send a `503` status code. As a convenience it also sets a
matched.

<DocsImage
src="/img/app/references/v10/blocked-host.png"
src="/img/app/references/blocked-host.png"
alt="Network tab of dev tools showing blocked host"
/>

Expand Down
8 changes: 4 additions & 4 deletions docs/app/references/launching-browsers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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:

<DocsImage
src="/img/app/launching-browsers/v10/browser-list-dropdown.png"
src="/img/app/launching-browsers/browser-list-dropdown.png"
alt="Select a different browser"
/>

Expand Down Expand Up @@ -398,7 +398,7 @@ Once selected, the Brave browser is detected using the same approach as any
other browser of the `chromium` family.

<DocsImage
src="/img/app/launching-browsers/v10/brave-running-tests.png"
src="/img/app/launching-browsers/brave-running-tests.png"
alt="Brave browser executing end-to-end tests"
/>

Expand Down Expand Up @@ -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.

<DocsImage
src="/img/app/launching-browsers/v10/multiple-chrome-icons.png"
src="/img/app/launching-browsers/multiple-chrome-icons.png"
alt="Cypress icon with 2 Google Chrome icons"
/>

Expand All @@ -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.

<DocsImage
src="/img/app/launching-browsers/v10/cypress-browser-chrome.png"
src="/img/app/launching-browsers/cypress-browser-chrome.png"
alt="Cypress Browser with darker chrome"
/>

Expand Down
2 changes: 1 addition & 1 deletion docs/cloud/account-management/data-storage-and-masking.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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)

<DocsImage
src="/img/app/references/v10/blocked-host.png"
src="/img/app/references/blocked-host.png"
alt="Network tab of dev tools showing blocked host"
/>

Expand Down
Binary file not shown.
Binary file not shown.
Binary file removed static/img/accessibility/image (1).png
Binary file not shown.
Binary file removed static/img/accessibility/image.png
Binary file not shown.
Binary file removed static/img/api/debug/failed-log.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed static/img/app/component-testing/select-browser.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed static/img/app/core-concepts/gui-diagram.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed static/img/app/cypress-app/gui-diagram.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed static/img/app/cypress-app/v10/aut-error-ct.png
Diff not rendered.
Binary file removed static/img/app/cypress-app/v10/aut-error-e2e.png
Diff not rendered.
Diff not rendered.
Binary file removed static/img/app/cypress-app/v10/command-log.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed static/img/app/cypress-app/v10/first-test-paused.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed static/img/app/cypress-app/v10/open-file-in-IDE.gif
Diff not rendered.
Diff not rendered.
Binary file removed static/img/app/cypress-app/v10/viewport-scaling.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed static/img/app/get-started/ct/v10/spec-file-list.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file removed static/img/app/parallelization/timeline-view.png
Diff not rendered.
Binary file removed static/img/app/retry-ability/v10/click-twice.gif
Diff not rendered.
Binary file removed static/img/app/retry-ability/v10/delay-click.png
Diff not rendered.
Binary file removed static/img/app/retry-ability/v10/eq.gif
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed static/img/app/retry-ability/v10/random-number.gif
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed static/img/app/test-retries/v10/attempt-2-start.png
Diff not rendered.
Binary file removed static/img/app/test-retries/v10/attempt-3-start.png
Diff not rendered.
Binary file removed static/img/app/visual-testing/completed-item.png
Diff not rendered.
Binary file removed static/img/app/visual-testing/completed-test.gif
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed static/img/cloud/runs/sidebar-environment.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed static/img/ui-coverage/image.png
Diff not rendered.