From 3ef40bfcc61af4dad8cffccde2776540d63ff661 Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Fri, 19 Apr 2024 13:09:20 +0530 Subject: [PATCH] fix: property navigation spec (#32782) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR fixes the property navigation spec that started failing in the recent PR #32736 ## Automation /ok-to-test tags="@tag.All" > [!CAUTION] > 🔴 🔴 🔴 Some tests have failed. > Workflow run: > Commit: 6b662b3defea1046d0dedda5ccdcb3b2e30fef08 > Cypress dashboard: Click here! > The following are new failures, please fix them before merging the PR:
    >
  1. cypress/e2e/Regression/ClientSide/ExplorerTests/Hide_Page_spec.js >
  2. cypress/e2e/Regression/ClientSide/ExplorerTests/Page_Load_Spec.js >
  3. cypress/e2e/Regression/ClientSide/Git/GitWithAutoLayout/conversion_of_git_connected_apps_spec.js >
  4. cypress/e2e/Regression/ClientSide/MobileResponsiveTests/ConversionAlgorithm_AutoLayout_Validation_BasicSpec.js >
  5. cypress/e2e/Regression/ClientSide/MobileResponsiveTests/ConversionFlow_Corner_Cases_spec.ts >
  6. cypress/e2e/Regression/ClientSide/SettingsPane/PageSettings_spec.ts
> To know the list of identified flaky tests - Refer here Co-authored-by: Pawan Kumar --- .../ClientSide/Debugger/Widget_property_navigation_spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/cypress/e2e/Regression/ClientSide/Debugger/Widget_property_navigation_spec.ts b/app/client/cypress/e2e/Regression/ClientSide/Debugger/Widget_property_navigation_spec.ts index 24ecf19fc1..1f9699579c 100644 --- a/app/client/cypress/e2e/Regression/ClientSide/Debugger/Widget_property_navigation_spec.ts +++ b/app/client/cypress/e2e/Regression/ClientSide/Debugger/Widget_property_navigation_spec.ts @@ -50,7 +50,7 @@ describe( _.propPane.NavigateBackToPropertyPane(); _.debuggerHelper.ClickDebuggerIcon(); _.debuggerHelper.ClicklogEntityLink(); - _.agHelper.GetNAssertContains(_.propPane._paneTitle, "Menu Item 1"); + _.agHelper.GetNAssertContains(_.propPane._paneTitle, "Menu Item"); _.propPane.AssertIfPropertyIsVisible("icon"); _.debuggerHelper.CloseBottomBar(); EditorNavigation.SelectEntityByName("ButtonGroup1", EntityType.Widget);