Request to understand ATF Configuration for ServiceNow Security Center Issue <!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } The customer is trying to configure ATF test scripts for ServiceNow Security Center and is unsure if the available 'Open Workspace Page' and 'Test Page' options suffice for testing all elements within Security Center. They need guidance on configuring test steps for Security Center, which is built on the Next Experience (UX Framework) workspace infrastructure as a Configurable Workspace. Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } All Resolution<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Please be informed that Security Center is built on the Next Experience (UX Framework) workspace infrastructure, making it a Configurable Workspace.====================================What "Open Workspace Page" doesThis step navigates the ATF browser runner to the target workspace URL. It is the required entry point for any Configurable Workspace test. By itself it can confirm that the workspace loads without error (page load verification), but itis designed to be a prerequisite step for subsequent testing steps, not a standalone end-to-end test.What "Test Page" does — and this is the key answerThe "Test Page" step is NOT limited to page load. It is the ATF mechanism to interact with seismic (Next Experience UI) components on a workspace page. It works in conjunction with the Page Inspector (navigate to All > Page Inspector >Manual Page Inspector), which scans a live workspace page and exposes all components that have been registered as testable.=====================================For any record forms that open within Security Center (e.g., clicking into a security incident or vulnerability record from the workspace), thecustomer should use Form category steps — not the Configurable Workspace category.The workflow is:1. Open Workspace Page (navigate to Security Center)2. Open an Existing Record / Open a New Record (Form category, selecting the Security Center or Service Operations workspace as the Form UI)3. Set Field Values, Submit Form, Click UI Action / Click Declarative Action, Assert Field Values (Form category steps)"Specifically, what we're adding is support for our forms step category to interact with configurable workspaces. That includes the ability for things like opening a new record, opening an existing record, setting field values,submitting records, and clicking UI actions and declarative actions."===========================There are few Limitation as well to be noticed:-"Not every element in a workspace is guaranteed to be testable. The Manual Page Inspector Module under ATF module will only expose components that have been explicitly registered as testable seismic components by their owning development team. Dashboard widgets,charts, and custom tiles in Security Center may or may not all be testable depending on how they were built. The customer would need to run the Manual Page Inspector against their Security Center workspace to see what is and is not exposed.==========================Additionally, the following are known gaps- Click modal button does not work in Configurable Workspaces- Add attachments to form does not work in Configurable Workspaces (the workaround is "Add Attachments to Existing Record," which operates server-side)==========================Related ResourcesOfficial Docs — Testing Configurable Workspace components (Australia)https://www.servicenow.com/docs/r/application-development/automated-test-framework-atf/atf-conf-ws.htmlOfficial Docs — Test for Configurable Workspace interaction (Australia)https://www.servicenow.com/docs/r/application-development/automated-test-framework-atf/atf-create-tests-ws.htmlOfficial Docs — Configurable Workspace category (step reference, Australia)https://www.servicenow.com/docs/r/application-development/automated-test-framework-atf/test-steps-conf-ws-tests-category.htmlOfficial Docs — Custom UI test steps (Test Page internals)https://www.servicenow.com/docs/r/application-development/automated-test-framework-atf/custom-ui-test-steps.htmlOfficial Docs — ATF test step categories (Australia)https://www.servicenow.com/docs/r/application-development/automated-test-framework-atf/test-step-categories.htmlOfficial Docs — Inspect different page types (Page Inspector how-to)https://www.servicenow.com/docs/r/application-development/automated-test-framework-atf/atf-inspect-page-types.html