Skip to content

Commit 8f6cda6

Browse files
AtofStrykercacieprinsjennifer-shehane
authored
chore: 15.3.0 documentation updates (#6281)
* docs: add escape key to supported key.press() named keys (#6279) * docs: add escape key * reorder history for cy.press --------- Co-authored-by: Jennifer Shehane <[email protected]> * chore: add 15.3.0 changelog --------- Co-authored-by: Cacie Prins <[email protected]> Co-authored-by: Jennifer Shehane <[email protected]>
1 parent 14c2be6 commit 8f6cda6

File tree

3 files changed

+52
-8
lines changed

3 files changed

+52
-8
lines changed

docs/api/commands/press.mdx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,11 @@ The key to press. Values for non single character keys are available on [`Cypres
6767
| Letters | `"a"` through `"z"`, `"A"` through `"Z"` |
6868
| Numbers | `"0"`, `"1"`, `"2"`, `"3"`, `"4"`, `"5"`, `"6"`, `"7"`, `"8"`, `"9"` |
6969
| Special Characters | `"!"`, `"@"`, `"#"`, `'+'`, `"€"`, `"é"`, etc. |
70+
| `Cypress.Keyboard.Keys.UP` | `"ArrowUp"` |
7071
| `Cypress.Keyboard.Keys.DOWN` | `"ArrowDown"` |
7172
| `Cypress.Keyboard.Keys.LEFT` | `"ArrowLeft"` |
7273
| `Cypress.Keyboard.Keys.RIGHT` | `"ArrowRight"` |
73-
| `Cypress.Keyboard.Keys.UP` | `"ArrowUp"` |
74+
| `Cypress.Keyboard.Keys.ESC` | `"Escape"` |
7475
| `Cypress.Keyboard.Keys.END` | `"End"` |
7576
| `Cypress.Keyboard.Keys.HOME` | `"Home"` |
7677
| `Cypress.Keyboard.Keys.PAGEDOWN` | `"PageDown"` |
@@ -167,10 +168,11 @@ If your application prevents the default behavior of the `beforeunload` event, t
167168

168169
## History
169170

170-
| Version | Changes |
171-
| ------------------------------------------ | ----------------------------------------------------------------------------------- |
172-
| [15.1.0](/app/references/changelog#15-1-0) | Expanded support to include named keys and single+multi-codepoint UTF-8 characters. |
173-
| [14.3.0](/app/references/changelog#14-3-0) | Added the `.press()` command |
171+
| Version | Changes |
172+
| ----------------------------------- | ----------------------------------------------------------------------------------- |
173+
| [15.3.0](/app/references/changelog) | Added support for `{esc}` key. |
174+
| [15.1.0](/app/references/changelog) | Expanded support to include named keys and single+multi-codepoint UTF-8 characters. |
175+
| [14.3.0](/app/references/changelog) | Added the `.press()` command |
174176

175177
## See also
176178

docs/api/cypress-api/keyboard-api.mdx

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,26 @@ The key available for `cy.press()`.
2727

2828
The following keys are supported:
2929

30-
| Reference | Value |
31-
| --------------------------- | ------- |
32-
| `Cypress.Keyboard.Keys.TAB` | `"Tab"` |
30+
| Reference | Value |
31+
| --------------------------------- | -------------------------------------------------------------------- |
32+
| Letters | `"a"` through `"z"`, `"A"` through `"Z"` |
33+
| Numbers | `"0"`, `"1"`, `"2"`, `"3"`, `"4"`, `"5"`, `"6"`, `"7"`, `"8"`, `"9"` |
34+
| Special Characters | `"!"`, `"@"`, `"#"`, `'+'`, `"€"`, `"é"`, etc. |
35+
| `Cypress.Keyboard.Keys.UP` | `"ArrowUp"` |
36+
| `Cypress.Keyboard.Keys.DOWN` | `"ArrowDown"` |
37+
| `Cypress.Keyboard.Keys.LEFT` | `"ArrowLeft"` |
38+
| `Cypress.Keyboard.Keys.RIGHT` | `"ArrowRight"` |
39+
| `Cypress.Keyboard.Keys.ESC` | `"Escape"` |
40+
| `Cypress.Keyboard.Keys.END` | `"End"` |
41+
| `Cypress.Keyboard.Keys.HOME` | `"Home"` |
42+
| `Cypress.Keyboard.Keys.PAGEDOWN` | `"PageDown"` |
43+
| `Cypress.Keyboard.Keys.PAGEUP` | `"PageUp"` |
44+
| `Cypress.Keyboard.Keys.ENTER` | `"Enter"` |
45+
| `Cypress.Keyboard.Keys.TAB` | `"Tab"` |
46+
| `Cypress.Keyboard.Keys.BACKSPACE` | `"Backspace"` |
47+
| `Cypress.Keyboard.Keys.DELETE` | `"Delete"` |
48+
| `Cypress.Keyboard.Keys.INSERT` | `"Insert"` |
49+
| `Cypress.Keyboard.Keys.SPACE` | `"Space"` |
3350

3451
### defaults Arguments
3552

docs/app/references/changelog.mdx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,31 @@ sidebar_label: Changelog
88

99
# Changelog
1010

11+
## 15.3.0
12+
13+
_Released 9/23/2025_
14+
15+
**Features:**
16+
17+
- Added Escape key support to [`cy.press()`](http://on.cypress.io/api/press). Addresses[#32429](https://github.com/cypress-io/cypress/issues/32429). Addressed in [#32545](https://github.com/cypress-io/cypress/pull/32545).
18+
19+
**Bugfixes:**
20+
21+
- In development mode, Electron `stderr` is piped directly to Cypress' `stderr` to make it clear why Electron failed to start, if it fails to start. Fixes [#32358](https://github.com/cypress-io/cypress/issues/32358). Addressed in [32468](https://github.com/cypress-io/cypress/pull/32468).
22+
- Fixed an issue where ESM Cypress configurations were not being interpreted correctly. Fixes [#32493](https://github.com/cypress-io/cypress/issues/32493). Fixed in [#32515](https://github.com/cypress-io/cypress/pull/32515).
23+
24+
**Misc:**
25+
26+
- Update the styles for command grouping 'line' so on expansion it is displayed correctly. Addressed in [#32521](https://github.com/cypress-io/cypress/pull/32521).
27+
- Test hook names now correctly display with a semi-bold font weight. Addresses [#32477](https://github.com/cypress-io/cypress/issues/32477). Addressed in [#32491](https://github.com/cypress-io/cypress/pull/32491).
28+
- Updated the Cypress Studio panel to not show bottom border. Addresses [#32478](https://github.com/cypress-io/cypress/issues/32478).
29+
30+
**Dependency Updates:**
31+
32+
- Upgraded `electron` from `36.4.0` to `36.8.1`. Addressed in [#32371](https://github.com/cypress-io/cypress/pull/32371).
33+
- Upgraded bundled Node.js version from `22.15.1` to `22.18.0`. Addressed in [#32371](https://github.com/cypress-io/cypress/pull/32371).
34+
- Upgraded bundled Chromium version from `136.0.7103.149` to `136.0.7103.177`. Addressed in [#32371](https://github.com/cypress-io/cypress/pull/32371).
35+
1136
## 15.2.0
1237

1338
_Released 9/9/2025_

0 commit comments

Comments
 (0)