From cd0296e3476a6c3b032f09bc807b8ed5bf68e87d Mon Sep 17 00:00:00 2001 From: KazukiG Date: Mon, 12 Aug 2024 20:40:23 -0300 Subject: [PATCH] feat: Added method to open subareas in the Customer Service Workspace --- .../Elements/Navigation.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Microsoft.Dynamics365.UIAutomation.Api.UCI/Elements/Navigation.cs b/Microsoft.Dynamics365.UIAutomation.Api.UCI/Elements/Navigation.cs index fbd17a0e..8e2ab7df 100644 --- a/Microsoft.Dynamics365.UIAutomation.Api.UCI/Elements/Navigation.cs +++ b/Microsoft.Dynamics365.UIAutomation.Api.UCI/Elements/Navigation.cs @@ -54,6 +54,17 @@ public void OpenSubArea(string area) _client.OpenSubArea(area); } + /// + /// Opens the Customer Service Workspace sub area in the unified client + /// + /// Name of the area + /// /// Name of the subarea + public void OpenSubAreaCSW(string area, string subarea) + { + _client.OpenSubArea(area); + _client.OpenSubArea(subarea); + } + /// /// Opens a sub area in the unified client ///