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
* Add title to icons within API that did not have title or aria-label
* try to address some common color-contrast issues
* lint
* Fix links without text
* remove line highlight that make text contrast unreadable
* Fix dark theme active color
* Fix heading levels
* Fix heading levels
* lint
* Fix broken link
Copy file name to clipboardexpand all lines: docs/accessibility/configuration/viewfilters.mdx
+7-7
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ By default, every URL that is visited within a run is included in the Accessibil
18
18
19
19
For every URL visited by Cypress in a run and every link element found, the first `viewFilters` rule for which the `pattern` property matches the URL is used to either include or exclude the URL based on the `include` value. URLs that do not match any rules are included by default.
20
20
21
-
## Syntax <ahref="#syntax"id="syntax"></a>
21
+
## Syntax
22
22
23
23
```typescript
24
24
{
@@ -31,29 +31,29 @@ For every URL visited by Cypress in a run and every link element found, the firs
Copy file name to clipboardexpand all lines: docs/accessibility/configuration/views.mdx
+9-9
Original file line number
Diff line number
Diff line change
@@ -36,27 +36,27 @@ The `groupBy` property of a view definition allows you to create multiple views
36
36
}
37
37
```
38
38
39
-
### views <ahref="#views"id="views"></a>
39
+
### views
40
40
41
41
_Optional._ Object\[]
42
42
43
43
An array of objects used to define views within Accessibility. _**Each object can have the following properties:**_
44
44
45
-
### pattern <ahref="#pattern"id="pattern"></a>
45
+
### pattern
46
46
47
47
_Required._ String (URL Pattern)
48
48
49
49
A URL pattern that is used to group matching URLs into a view. Uses [URL Pattern API](https://developer.mozilla.org/en-US/docs/Web/API/URL_Pattern_API) syntax.
50
50
51
-
### groupBy <ahref="#groupby"id="groupby"></a>
51
+
### groupBy
52
52
53
53
_Optional._ String\[]
54
54
55
55
The URL parameters that should be used to subdivide the URLs into multiple views, rather than being grouped into a single view.
Copy file name to clipboardexpand all lines: docs/accessibility/core-concepts/inspecting-violation-details.mdx
+4-4
Original file line number
Diff line number
Diff line change
@@ -18,18 +18,18 @@ After navigating to a specific Rule of View from a [Run-level report](/accessibi
18
18
19
19
This page is divided into two main sections: **Rules** and **Snapshots**.
20
20
21
-
###Rules
21
+
## Rules
22
22
23
23
The left-hand side of the detail view lists all Rules that match the current filters for the selected View. If no specific View is selected, the list applies to all Views in the run.
24
24
25
-
####Rule details
25
+
### Rule details
26
26
27
27
Each Rule can be expanded to reveal related elements and additional information:
28
28
29
29
-**Description**: Text explaining the rule, its origin, the affected user experiences, and how to fix the issue.
30
30
-**Learn More**: A link to Deque University for in-depth guidance.
31
31
32
-
####Element details
32
+
### Element details
33
33
34
34
Clicking on an element in the expanded Rule section provides:
35
35
@@ -44,7 +44,7 @@ Clicking on an element in the expanded Rule section provides:
44
44
alt="Details displayed after clicking on an element in the Rules section of the Cypress Accessibility issue detail view. Options to copy the selector, print to console, share the issue, and solutions are available."
45
45
/>
46
46
47
-
###Snapshots
47
+
## Snapshots
48
48
49
49
Snapshots are fully hydrated HTML and CSS representations of your application's state during the test. Unlike screenshots or video, these snapshots allow you to:
|`type`|`query`| The type of alias to store, which impacts how the value is retrieved later in the test. Valid values are `query` and `static`. A `query` alias re-runs all queries leading up to the resulting value each time the alias is requested. A `static` alias is retrieved once when the alias is stored, and will never change. `type` has no effect when aliasing intercepts, spies, and stubs. |
Copy file name to clipboardexpand all lines: docs/api/commands/check.mdx
+4-4
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ Pass in an options object to change the default behavior of `.check()`.
64
64
|`timeout`|[`defaultCommandTimeout`](/app/references/configuration#Timeouts)| Time to wait for `.check()` to resolve before [timing out](#Timeouts)|
65
65
|`waitForAnimations`|[`waitForAnimations`](/app/references/configuration#Actionability)| Whether to wait for elements to [finish animating](/app/core-concepts/interacting-with-elements#Animations) before executing the command. |
Copy file name to clipboardexpand all lines: docs/api/commands/children.mdx
+4-4
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ Pass in an options object to change the default behavior of `.children()`.
51
51
|`log`|`true`| Displays the command in the [Command log](/app/core-concepts/open-mode#Command-Log)|
52
52
|`timeout`|[`defaultCommandTimeout`](/app/references/configuration#Timeouts)| Time to wait for `.children()` to resolve before [timing out](#Timeouts)|
Copy file name to clipboardexpand all lines: docs/api/commands/clear.mdx
+4-4
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ Pass in an options object to change the default behavior of `.clear()`.
54
54
|`timeout`|[`defaultCommandTimeout`](/app/references/configuration#Timeouts)| Time to wait for `.clear()` to resolve before [timing out](#Timeouts)|
55
55
|`waitForAnimations`|[`waitForAnimations`](/app/references/configuration#Actionability)| Whether to wait for elements to [finish animating](/app/core-concepts/interacting-with-elements#Animations) before executing the command. |
Copy file name to clipboardexpand all lines: docs/api/commands/clearallcookies.mdx
+4-4
Original file line number
Diff line number
Diff line change
@@ -41,21 +41,21 @@ Pass in an options object to change the default behavior of
41
41
|`log`|`true`| Displays the command in the [Command log](/app/core-concepts/open-mode#Command-Log)|
42
42
|`timeout`|[`responseTimeout`](/app/references/configuration#Timeouts)| Time to wait for `cy.clearAllCookies()` to resolve before [timing out](#Timeouts)|
0 commit comments