From a06a54469207a03244847305177ca34a238caf37 Mon Sep 17 00:00:00 2001 From: Peter Stakoun Date: Mon, 16 Dec 2024 15:45:23 -0500 Subject: [PATCH 1/4] Add UICov config clarifications --- docs/ui-coverage/configuration/elementfilters.mdx | 4 +++- docs/ui-coverage/configuration/overview.mdx | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/ui-coverage/configuration/elementfilters.mdx b/docs/ui-coverage/configuration/elementfilters.mdx index 7e749ea9ba..b6bdd18cc9 100644 --- a/docs/ui-coverage/configuration/elementfilters.mdx +++ b/docs/ui-coverage/configuration/elementfilters.mdx @@ -41,7 +41,9 @@ An array of objects used to specify elements to exclude from UI Coverage. _**Eac _Required._ String (CSS Selector) -Used to match elements. +A CSS selector used to identify elements. +* Supports all standard CSS selector syntax including IDs, classes, attributes, and combinators +* The selector matches exactly what is specified - for example, `#container` matches the container element itself, while `#container *` matches all elements within the container ### include diff --git a/docs/ui-coverage/configuration/overview.mdx b/docs/ui-coverage/configuration/overview.mdx index 3333e1f0f7..01272756ea 100644 --- a/docs/ui-coverage/configuration/overview.mdx +++ b/docs/ui-coverage/configuration/overview.mdx @@ -67,7 +67,7 @@ You can use the provided editor to write configuration in JSON format. A complet } ``` -Note that the root-level App Quality configuration properties (`elementFilters`, `views`, and `viewFilters`) impact both UI Coverage and Accessibility. +Note that the root-level properties `elementFilters` and `viewFilters` apply to both UI Coverage and Accessibility. These properties can also be nested under `uiCoverage` or `accessibility` to apply to only that feature, with nested configuration taking precedence over root-level configuration. ### Viewing Configuration for a Run From 8c30eff0e2a99e91365c09de35e3e7ba087f5a9b Mon Sep 17 00:00:00 2001 From: Peter Stakoun Date: Mon, 16 Dec 2024 15:47:15 -0500 Subject: [PATCH 2/4] Add views clarification --- docs/ui-coverage/configuration/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ui-coverage/configuration/overview.mdx b/docs/ui-coverage/configuration/overview.mdx index 01272756ea..73cfe6bb11 100644 --- a/docs/ui-coverage/configuration/overview.mdx +++ b/docs/ui-coverage/configuration/overview.mdx @@ -67,7 +67,7 @@ You can use the provided editor to write configuration in JSON format. A complet } ``` -Note that the root-level properties `elementFilters` and `viewFilters` apply to both UI Coverage and Accessibility. These properties can also be nested under `uiCoverage` or `accessibility` to apply to only that feature, with nested configuration taking precedence over root-level configuration. +Note that the root-level properties `elementFilters` and `viewFilters` apply to both UI Coverage and Accessibility. These properties can also be nested under `uiCoverage` or `accessibility` to apply to only that feature, with nested configuration taking precedence over root-level configuration. The `views` property also applies to both features but cannot be nested. ### Viewing Configuration for a Run From 636a9b0c6a41eb2df69152672c84c1d6386c4977 Mon Sep 17 00:00:00 2001 From: Jennifer Shehane Date: Mon, 23 Dec 2024 09:58:16 -0500 Subject: [PATCH 3/4] Update docs/ui-coverage/configuration/overview.mdx --- docs/ui-coverage/configuration/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ui-coverage/configuration/overview.mdx b/docs/ui-coverage/configuration/overview.mdx index 73cfe6bb11..c96638b5a3 100644 --- a/docs/ui-coverage/configuration/overview.mdx +++ b/docs/ui-coverage/configuration/overview.mdx @@ -67,7 +67,7 @@ You can use the provided editor to write configuration in JSON format. A complet } ``` -Note that the root-level properties `elementFilters` and `viewFilters` apply to both UI Coverage and Accessibility. These properties can also be nested under `uiCoverage` or `accessibility` to apply to only that feature, with nested configuration taking precedence over root-level configuration. The `views` property also applies to both features but cannot be nested. +Note that the root-level properties `elementFilters` and `viewFilters` apply to both UI Coverage and Accessibility. These properties can also be nested under `uiCoverage` or `accessibility` to apply to only that product, with nested configuration taking precedence over root-level configuration. The `views` property also applies to both products but cannot be nested. ### Viewing Configuration for a Run From e8064d6d1f6654ac4dac11c9589af0c1127437b9 Mon Sep 17 00:00:00 2001 From: Peter Stakoun Date: Mon, 23 Dec 2024 12:50:06 -0500 Subject: [PATCH 4/4] Lint --- docs/ui-coverage/configuration/elementfilters.mdx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/ui-coverage/configuration/elementfilters.mdx b/docs/ui-coverage/configuration/elementfilters.mdx index b6bdd18cc9..ee2a13261d 100644 --- a/docs/ui-coverage/configuration/elementfilters.mdx +++ b/docs/ui-coverage/configuration/elementfilters.mdx @@ -42,8 +42,9 @@ An array of objects used to specify elements to exclude from UI Coverage. _**Eac _Required._ String (CSS Selector) A CSS selector used to identify elements. -* Supports all standard CSS selector syntax including IDs, classes, attributes, and combinators -* The selector matches exactly what is specified - for example, `#container` matches the container element itself, while `#container *` matches all elements within the container + +- Supports all standard CSS selector syntax including IDs, classes, attributes, and combinators +- The selector matches exactly what is specified - for example, `#container` matches the container element itself, while `#container *` matches all elements within the container ### include