From 7d4ae683a305230e341ac888cba11713c87c4e44 Mon Sep 17 00:00:00 2001 From: marktnoonan Date: Wed, 23 Apr 2025 10:19:50 -0400 Subject: [PATCH 1/3] add iframe and Shadow DOM support to the changelog --- docs/ui-coverage/changelog.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/ui-coverage/changelog.mdx b/docs/ui-coverage/changelog.mdx index c430af2d1c..877febb268 100644 --- a/docs/ui-coverage/changelog.mdx +++ b/docs/ui-coverage/changelog.mdx @@ -9,6 +9,10 @@ sidebar_position: 200 # Changelog +## Week of 4/1/2024 + +- **Shadow DOM and iframe Support:** UI Coverage now supports Shadow DOM and iframes for reporting on interactions. These settings are off by default, please contact your Cypress representative to opt-in. + ## Week of 3/24/2025 - UI Coverage results are now included in the [Data Extract API](/cloud/integrations/data-extract-api) so that you can retrieve data over time. From e1835d10a48b4b8ef2921cf1fd5bf05293d13d12 Mon Sep 17 00:00:00 2001 From: marktnoonan Date: Wed, 23 Apr 2025 11:06:51 -0400 Subject: [PATCH 2/3] updated wording --- docs/ui-coverage/changelog.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ui-coverage/changelog.mdx b/docs/ui-coverage/changelog.mdx index 877febb268..07d54c5f34 100644 --- a/docs/ui-coverage/changelog.mdx +++ b/docs/ui-coverage/changelog.mdx @@ -11,7 +11,7 @@ sidebar_position: 200 ## Week of 4/1/2024 -- **Shadow DOM and iframe Support:** UI Coverage now supports Shadow DOM and iframes for reporting on interactions. These settings are off by default, please contact your Cypress representative to opt-in. +- **Shadow DOM and iFrame Support:** UI Coverage now supports Shadow DOM and iFrames for reporting on interactions. Both of these settings are off by default. Please contact your Cypress representative to opt in. ## Week of 3/24/2025 From b756fcb397485edac65e98b5f3cd7bd84b861fe5 Mon Sep 17 00:00:00 2001 From: marktnoonan Date: Thu, 24 Apr 2025 15:09:33 -0400 Subject: [PATCH 3/3] update premium solution wording --- docs/app/faq.mdx | 2 +- docs/app/get-started/why-cypress.mdx | 4 ++-- docs/partials/_accessibility-addon.mdx | 2 +- docs/partials/_ui-coverage-addon.mdx | 2 +- src/components/product-heading/index.tsx | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/app/faq.mdx b/docs/app/faq.mdx index 7c47192281..481eac6ef2 100644 --- a/docs/app/faq.mdx +++ b/docs/app/faq.mdx @@ -20,7 +20,7 @@ source (MIT license) application. This is always free to use. variety of billing plans (including a free, open source plan) for when you want to record your test runs in CI. -Additionally, we have add-ons like [UI Coverage](/ui-coverage/get-started/introduction) and [Cypress Accessibility](/accessibility/get-started/introduction) which have separate pricing. +Additionally, we have premium solutions like [UI Coverage](/ui-coverage/get-started/introduction) and [Cypress Accessibility](/accessibility/get-started/introduction) which have separate pricing. Please see our [Pricing Page](https://www.cypress.io/pricing) for more details. diff --git a/docs/app/get-started/why-cypress.mdx b/docs/app/get-started/why-cypress.mdx index 3058826806..2ab7d7ec51 100644 --- a/docs/app/get-started/why-cypress.mdx +++ b/docs/app/get-started/why-cypress.mdx @@ -44,8 +44,8 @@ of your test suite and the quality of your application. [open source](https://github.com/cypress-io/cypress), locally installed app for writing and running tests. - [Cypress Cloud](/cloud/get-started/introduction), a paid service for recording tests, surfacing test results, and providing test analytics. -- [UI Coverage](/ui-coverage/get-started/introduction), a paid add-on providing a visual overview of test coverage across every page and component of your app, offering clear insights into uncovered areas that everyone can understand. -- [Cypress Accessibility](/accessibility/get-started/introduction), a paid add-on providing accessibility checks, which helps detect barriers for people with disabilities using your application. +- [UI Coverage](/ui-coverage/get-started/introduction), a paid solution providing a visual overview of test coverage across every page and component of your app, offering clear insights into uncovered areas that everyone can understand. +- [Cypress Accessibility](/accessibility/get-started/introduction), a paid solution providing accessibility checks, which helps detect barriers for people with disabilities using your application. Cypress is a robust solution that can improve the quality of your application. diff --git a/docs/partials/_accessibility-addon.mdx b/docs/partials/_accessibility-addon.mdx index 97d68f3915..b150462c81 100644 --- a/docs/partials/_accessibility-addon.mdx +++ b/docs/partials/_accessibility-addon.mdx @@ -1,5 +1,5 @@ :::tip -**Cypress Accessibility** is a paid add-on. [Schedule a demo]() today and see how easy it is to enhance your accessibility testing while speeding up your development process. +**Cypress Accessibility** is a paid premium solution in Cypress Cloud. [Schedule a demo]() today and see how easy it is to enhance your accessibility testing while speeding up your development process. ::: diff --git a/docs/partials/_ui-coverage-addon.mdx b/docs/partials/_ui-coverage-addon.mdx index 4553fe3bf8..cfcddccab6 100644 --- a/docs/partials/_ui-coverage-addon.mdx +++ b/docs/partials/_ui-coverage-addon.mdx @@ -1,5 +1,5 @@ :::tip -**UI Coverage** is a paid add-on. [Schedule a demo]() today and see how easy it is to enhance your testing while speeding up your development process. +**UI Coverage** is a paid premium solution in Cypress Cloud. [Schedule a demo]() today and see how easy it is to enhance your testing while speeding up your development process. ::: diff --git a/src/components/product-heading/index.tsx b/src/components/product-heading/index.tsx index e867804065..e4cc0ebb19 100644 --- a/src/components/product-heading/index.tsx +++ b/src/components/product-heading/index.tsx @@ -19,7 +19,7 @@ const ProductHeading: React.FC = ({ const iconName = product === 'ui-coverage' ? 'technology-ui-coverage' : product === 'accessibility' ? 'cypress-accessibility-outline' : 'technology-cypress' const linkPath = product === 'cloud' ? 'pricing' : product - let badgeContent = product === 'cloud' ? 'Free Trial' : '+ Add-on' + let badgeContent = product === 'cloud' ? 'Free Trial' : '+ Premium Solution' if (product === 'cloud' && plan) { badgeContent = plan === 'team' ? 'Team Plan' : plan === 'business' ? 'Business Plan' : 'Enterprise Plan'