Skip to content

Instantly share code, notes, and snippets.

@codemonkee
Last active January 6, 2019 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codemonkee/1fda9755761f21acc9c2e479c8a7a987 to your computer and use it in GitHub Desktop.
Save codemonkee/1fda9755761f21acc9c2e479c8a7a987 to your computer and use it in GitHub Desktop.
Sample UiPath Project for modifying dynamic fields on https://www.mockaroo.com/ asked on Stackoverflow (https://stackoverflow.com/questions/53900372/how-to-type-into-text-box-generated-dynamically)
<Activity mc:Ignorable="sap sap2010 sads" x:Class="Main" this:Main.in_URL="https://www.mockaroo.com/"
xmlns="http://schemas.microsoft.com/netfx/2009/xaml/activities"
xmlns:av="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:mva="clr-namespace:Microsoft.VisualBasic.Activities;assembly=System.Activities"
xmlns:sads="http://schemas.microsoft.com/netfx/2010/xaml/activities/debugger"
xmlns:sap="http://schemas.microsoft.com/netfx/2009/xaml/activities/presentation"
xmlns:sap2010="http://schemas.microsoft.com/netfx/2010/xaml/activities/presentation"
xmlns:scg="clr-namespace:System.Collections.Generic;assembly=mscorlib"
xmlns:sco="clr-namespace:System.Collections.ObjectModel;assembly=mscorlib"
xmlns:this="clr-namespace:"
xmlns:ui="http://schemas.uipath.com/workflow/activities"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<x:Members>
<x:Property Name="in_URL" Type="InArgument(x:String)" />
</x:Members>
<mva:VisualBasic.Settings>
<x:Null />
</mva:VisualBasic.Settings>
<sap2010:WorkflowViewState.IdRef>Main_1</sap2010:WorkflowViewState.IdRef>
<TextExpression.NamespacesForImplementation>
<sco:Collection x:TypeArguments="x:String">
<x:String>System.Activities</x:String>
<x:String>System.Activities.Statements</x:String>
<x:String>System.Activities.Expressions</x:String>
<x:String>System.Activities.Validation</x:String>
<x:String>System.Activities.XamlIntegration</x:String>
<x:String>Microsoft.VisualBasic</x:String>
<x:String>Microsoft.VisualBasic.Activities</x:String>
<x:String>System</x:String>
<x:String>System.Collections</x:String>
<x:String>System.Collections.Generic</x:String>
<x:String>System.Data</x:String>
<x:String>System.Diagnostics</x:String>
<x:String>System.Drawing</x:String>
<x:String>System.IO</x:String>
<x:String>System.Linq</x:String>
<x:String>System.Net.Mail</x:String>
<x:String>System.Xml</x:String>
<x:String>System.Xml.Linq</x:String>
<x:String>UiPath.Core</x:String>
<x:String>UiPath.Core.Activities</x:String>
<x:String>System.Windows.Markup</x:String>
</sco:Collection>
</TextExpression.NamespacesForImplementation>
<TextExpression.ReferencesForImplementation>
<sco:Collection x:TypeArguments="AssemblyReference">
<AssemblyReference>System.Activities</AssemblyReference>
<AssemblyReference>Microsoft.VisualBasic</AssemblyReference>
<AssemblyReference>mscorlib</AssemblyReference>
<AssemblyReference>System.Data</AssemblyReference>
<AssemblyReference>System</AssemblyReference>
<AssemblyReference>System.Drawing</AssemblyReference>
<AssemblyReference>System.Core</AssemblyReference>
<AssemblyReference>System.Xml</AssemblyReference>
<AssemblyReference>System.Xml.Linq</AssemblyReference>
<AssemblyReference>UiPath.Core</AssemblyReference>
<AssemblyReference>PresentationFramework</AssemblyReference>
<AssemblyReference>WindowsBase</AssemblyReference>
<AssemblyReference>PresentationCore</AssemblyReference>
<AssemblyReference>System.Xaml</AssemblyReference>
<AssemblyReference>UiPath.UiAutomation.Activities</AssemblyReference>
<AssemblyReference>UiPath.Studio.Plugin.Workflow</AssemblyReference>
</sco:Collection>
</TextExpression.ReferencesForImplementation>
<Flowchart sap2010:Annotation.AnnotationText="Question asked on Stackoverflow: How to type into a text box that is generated dynamically&#xD;&#xA;https://stackoverflow.com/questions/53900372/how-to-type-into-text-box-generated-dynamically&#xD;&#xA;&#xD;&#xA;Steps to reproduce the issue:&#xD;&#xA;&#xD;&#xA;1. Go to www.mockaroo.com&#xD;&#xA;2. Rename gender to date&#xD;&#xA;3. Click on on Gender under Type and type date in the search and then select Date&#xD;&#xA;&#xD;&#xA;This will display two fields from date and to date (dynamically generated). I want change the date in these fields." DisplayName="Modify dynamic HTML fields" sap2010:WorkflowViewState.IdRef="Flowchart_1">
<Flowchart.Variables>
<Variable x:TypeArguments="ui:Browser" Name="uiBrowser" />
<Variable x:TypeArguments="ui:UiElement" Name="fieldNameToChange" />
</Flowchart.Variables>
<Flowchart.StartNode>
<FlowStep x:Name="__ReferenceID0" sap2010:WorkflowViewState.IdRef="FlowStep_2">
<ui:OpenBrowser BrowserType="Chrome" DisplayName="Open Browser" Hidden="False" sap2010:WorkflowViewState.IdRef="OpenBrowser_1" NewSession="True" Private="False" UiBrowser="[uiBrowser]" Url="[in_URL]">
<ui:OpenBrowser.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
<Sequence DisplayName="Do" sap2010:WorkflowViewState.IdRef="Sequence_1" />
</ActivityAction>
</ui:OpenBrowser.Body>
</ui:OpenBrowser>
<FlowStep.Next>
<FlowStep x:Name="__ReferenceID1" sap2010:WorkflowViewState.IdRef="FlowStep_1">
<Sequence DisplayName="Update Field Name/Type" sap2010:WorkflowViewState.IdRef="Sequence_2">
<ui:BrowserScope SearchScope="{x:Null}" Selector="{x:Null}" TimeoutMS="{x:Null}" UiBrowser="{x:Null}" Browser="[uiBrowser]" BrowserType="Chrome" DisplayName="Attach Browser 'chrome.exe Mockaroo'" sap2010:WorkflowViewState.IdRef="BrowserScope_1" InformativeScreenshot="79bf26caf5656fdc8bda7d0c07957875">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
<Sequence sap2010:WorkflowViewState.IdRef="Sequence_3">
<ui:WaitUiElementAppear DisplayName="Find Element 'INPUT schema_columns_a...'" FoundElement="[fieldNameToChange]" sap2010:WorkflowViewState.IdRef="WaitUiElementAppear_1" WaitActive="False" WaitVisible="False">
<ui:WaitUiElementAppear.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" TimeoutMS="{x:Null}" InformativeScreenshot="44a2e611613a6333e8aea13dd319d902" Selector="&lt;html app='chrome.exe' title='Mockaroo*' /&gt;&lt;webctrl tag='INPUT' value='gender' parentclass='column' parentid='fields' /&gt;" WaitForReady="INTERACTIVE" />
</ui:WaitUiElementAppear.Target>
</ui:WaitUiElementAppear>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" ClickBeforeTyping="False" DisplayName="Type Into 'INPUT schema_columns_a...'" EmptyField="True" sap2010:WorkflowViewState.IdRef="TypeInto_1" SendWindowMessages="False" SimulateType="True" Text="date">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Selector="{x:Null}" TimeoutMS="{x:Null}" Element="[fieldNameToChange]" InformativeScreenshot="1d72c08ed044729f25f612437e3c55e2" WaitForReady="COMPLETE" />
</ui:TypeInto.Target>
</ui:TypeInto>
<ui:Click DelayBefore="{x:Null}" DelayMS="{x:Null}" ClickType="CLICK_SINGLE" DisplayName="Click 'INPUT'" sap2010:WorkflowViewState.IdRef="Click_1" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False" SimulateClick="True">
<ui:Click.CursorPosition>
<ui:CursorPosition Position="Center">
<ui:CursorPosition.OffsetX>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetX>
<ui:CursorPosition.OffsetY>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetY>
</ui:CursorPosition>
</ui:Click.CursorPosition>
<ui:Click.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" TimeoutMS="{x:Null}" InformativeScreenshot="670f60dd2d727e5c78200115157c215e" Selector="&lt;html app='chrome.exe' title='Mockaroo*' /&gt;&lt;webctrl parentid='fields' tag='INPUT' value='Gender' parentclass='column column-type' /&gt;" WaitForReady="INTERACTIVE" />
</ui:Click.Target>
</ui:Click>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" ClickBeforeTyping="False" DisplayName="Type Into 'INPUT type_search_field'" EmptyField="True" sap2010:WorkflowViewState.IdRef="TypeInto_2" SendWindowMessages="False" SimulateType="True" Text="date">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" TimeoutMS="{x:Null}" InformativeScreenshot="473355b106a1b38b964c5cee389bb238" Selector="&lt;html app='chrome.exe' title='Mockaroo*' /&gt;&lt;webctrl id='type_search_field' tag='INPUT' /&gt;" WaitForReady="INTERACTIVE" />
</ui:TypeInto.Target>
</ui:TypeInto>
<ui:Click DelayBefore="{x:Null}" DelayMS="{x:Null}" ClickType="CLICK_SINGLE" DisplayName="Click 'DIV'" sap2010:WorkflowViewState.IdRef="Click_2" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False" SimulateClick="True">
<ui:Click.CursorPosition>
<ui:CursorPosition Position="Center">
<ui:CursorPosition.OffsetX>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetX>
<ui:CursorPosition.OffsetY>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetY>
</ui:CursorPosition>
</ui:Click.CursorPosition>
<ui:Click.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" TimeoutMS="{x:Null}" InformativeScreenshot="2356e5b4d1d121cdffab0b68f1a5a520" Selector="&lt;html app='chrome.exe' title='Mockaroo*' /&gt;&lt;webctrl aaname='Date' parentid='type_list' tag='DIV' /&gt;" WaitForReady="INTERACTIVE" />
</ui:Click.Target>
</ui:Click>
</Sequence>
</ActivityAction>
</ui:BrowserScope.Body>
</ui:BrowserScope>
</Sequence>
<FlowStep.Next>
<FlowStep x:Name="__ReferenceID2" sap2010:WorkflowViewState.IdRef="FlowStep_3">
<Sequence DisplayName="Update Date Options" sap2010:WorkflowViewState.IdRef="Sequence_4">
<ui:AnchorBase AnchorPosition="Auto" DisplayName="Anchor Base" sap2010:WorkflowViewState.IdRef="AnchorBase_1">
<ui:AnchorBase.Action>
<ActivityAction x:TypeArguments="ui:Anchor">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="ui:Anchor" Name="ContextAnchor" />
</ActivityAction.Argument>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" ClickBeforeTyping="False" DisplayName="Type Into 'INPUT dp1546756231537'" EmptyField="False" sap2010:WorkflowViewState.IdRef="TypeInto_3" SendWindowMessages="False" SimulateType="False" Text="09/27/2018">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" TimeoutMS="{x:Null}" InformativeScreenshot="9c480798957d67bd886217720d9624fb" Selector="&lt;webctrl tag='INPUT' aaname='start of range' name='*min_date*' parentclass='options' parentid='fields' /&gt;" WaitForReady="INTERACTIVE" />
</ui:TypeInto.Target>
</ui:TypeInto>
</ActivityAction>
</ui:AnchorBase.Action>
<ui:AnchorBase.AnchorProvider>
<ui:WaitUiElementAppear FoundElement="{x:Null}" DisplayName="Find Element 'DIV'" sap2010:WorkflowViewState.IdRef="WaitUiElementAppear_2" WaitActive="False" WaitVisible="False">
<ui:WaitUiElementAppear.Target>
<ui:Target ClippingRegion="{x:Null}" Selector="{x:Null}" TimeoutMS="{x:Null}" Element="[fieldNameToChange]" InformativeScreenshot="607750124d6f95f90cd08ca959b92ba7" WaitForReady="INTERACTIVE" />
</ui:WaitUiElementAppear.Target>
</ui:WaitUiElementAppear>
</ui:AnchorBase.AnchorProvider>
</ui:AnchorBase>
<ui:AnchorBase AnchorPosition="Auto" DisplayName="Anchor Base" sap2010:WorkflowViewState.IdRef="AnchorBase_2">
<ui:AnchorBase.Action>
<ActivityAction x:TypeArguments="ui:Anchor">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="ui:Anchor" Name="ContextAnchor" />
</ActivityAction.Argument>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" ClickBeforeTyping="False" DisplayName="Type Into 'INPUT dp1546756231537'" EmptyField="True" sap2010:WorkflowViewState.IdRef="TypeInto_4" SendWindowMessages="False" SimulateType="True" Text="12/15/2019">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" TimeoutMS="{x:Null}" InformativeScreenshot="061b4c9f34d4c632b1b50bbddf8ad969" Selector="&lt;webctrl tag='INPUT' aaname='end of range' name='*max_date*' parentclass='options' parentid='fields' /&gt;" WaitForReady="INTERACTIVE" />
</ui:TypeInto.Target>
</ui:TypeInto>
</ActivityAction>
</ui:AnchorBase.Action>
<ui:AnchorBase.AnchorProvider>
<ui:WaitUiElementAppear FoundElement="{x:Null}" DisplayName="Find Element 'DIV'" sap2010:WorkflowViewState.IdRef="WaitUiElementAppear_3" WaitActive="False" WaitVisible="False">
<ui:WaitUiElementAppear.Target>
<ui:Target ClippingRegion="{x:Null}" Selector="{x:Null}" TimeoutMS="{x:Null}" Element="[fieldNameToChange]" InformativeScreenshot="607750124d6f95f90cd08ca959b92ba7" WaitForReady="INTERACTIVE" />
</ui:WaitUiElementAppear.Target>
</ui:WaitUiElementAppear>
</ui:AnchorBase.AnchorProvider>
</ui:AnchorBase>
</Sequence>
</FlowStep>
</FlowStep.Next>
</FlowStep>
</FlowStep.Next>
</FlowStep>
</Flowchart.StartNode>
<x:Reference>__ReferenceID0</x:Reference>
<x:Reference>__ReferenceID1</x:Reference>
<x:Reference>__ReferenceID2</x:Reference>
<sads:DebugSymbol.Symbol>d1dEOlxSUEFcVWlQYXRoXFN0YWNrb3ZlcmZsb3dcNTM5MDAzNzJfSG93VG9UeXBlSW50b1RleHRCb3hHZW5lcmF0ZWREeW5hbWljYWxseVxNYWluLnhhbWwkAUsBZQECQgPHAQ8CAQFJCVIaAgElVQ2OARgCARGRARG8ARwCAQJJtAFJwQECASlJxgFJ0AECASdPD09ZAgEmVg+NASECARKSAROmASMCAQqnARO7ASMCAQNWfVaKAQIBI1wVigEgAgEToAEXpAEwAgEOmAEZnAEnAgELtQEXuQEwAgEHrQEZsQEnAgEEXRdhMAIBH2IXZiUCARtnF3UiAgEZdhd6JQIBFnsXiQEiAgEUogFxogGGAQIBD5oBrAGaAZ0CAgENmAG8ApgByAICAQy3AXG3AYYBAgEIrwGsAa8BmwICAQatAboCrQHGAgIBBV10XYkBAgEhX6oBX7ACAgEgYrwCYsICAgEeZHFkhgECARxzqgFzvAICARp4qgF4kQICARh2ugJ2wAICAReHAaoBhwGbAgIBFQ==</sads:DebugSymbol.Symbol>
</Flowchart>
<sap2010:WorkflowViewState.ViewStateManager>
<sap2010:ViewStateManager>
<sap2010:ViewStateData Id="Sequence_1" sap:VirtualizedContainerService.HintSize="200,100">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</sap2010:ViewStateData>
<sap2010:ViewStateData Id="OpenBrowser_1" sap:VirtualizedContainerService.HintSize="200,51">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</sap2010:ViewStateData>
<sap2010:ViewStateData Id="WaitUiElementAppear_1" sap:VirtualizedContainerService.HintSize="314,106" />
<sap2010:ViewStateData Id="TypeInto_1" sap:VirtualizedContainerService.HintSize="314,134" />
<sap2010:ViewStateData Id="Click_1" sap:VirtualizedContainerService.HintSize="314,106" />
<sap2010:ViewStateData Id="TypeInto_2" sap:VirtualizedContainerService.HintSize="314,134" />
<sap2010:ViewStateData Id="Click_2" sap:VirtualizedContainerService.HintSize="314,106" />
<sap2010:ViewStateData Id="Sequence_3" sap:VirtualizedContainerService.HintSize="336,870">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</sap2010:ViewStateData>
<sap2010:ViewStateData Id="BrowserScope_1" sap:VirtualizedContainerService.HintSize="414,1016" />
<sap2010:ViewStateData Id="Sequence_2" sap:VirtualizedContainerService.HintSize="200,51">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</sap2010:ViewStateData>
<sap2010:ViewStateData Id="TypeInto_3" sap:VirtualizedContainerService.HintSize="314,134" />
<sap2010:ViewStateData Id="WaitUiElementAppear_2" sap:VirtualizedContainerService.HintSize="314,106" />
<sap2010:ViewStateData Id="AnchorBase_1" sap:VirtualizedContainerService.HintSize="706,226" />
<sap2010:ViewStateData Id="TypeInto_4" sap:VirtualizedContainerService.HintSize="314,134" />
<sap2010:ViewStateData Id="WaitUiElementAppear_3" sap:VirtualizedContainerService.HintSize="314,106" />
<sap2010:ViewStateData Id="AnchorBase_2" sap:VirtualizedContainerService.HintSize="706,226" />
<sap2010:ViewStateData Id="Sequence_4" sap:VirtualizedContainerService.HintSize="200,51">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</sap2010:ViewStateData>
<sap2010:ViewStateData Id="FlowStep_3">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<av:Point x:Key="ShapeLocation">200,306.02</av:Point>
<av:Size x:Key="ShapeSize">200,51</av:Size>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</sap2010:ViewStateData>
<sap2010:ViewStateData Id="FlowStep_1">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<av:Point x:Key="ShapeLocation">200,205.02</av:Point>
<av:Size x:Key="ShapeSize">200,51</av:Size>
<av:PointCollection x:Key="ConnectorLocation">300,256.02 300,306.02</av:PointCollection>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</sap2010:ViewStateData>
<sap2010:ViewStateData Id="FlowStep_2">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<av:Point x:Key="ShapeLocation">200,104.02</av:Point>
<av:Size x:Key="ShapeSize">200,51</av:Size>
<av:PointCollection x:Key="ConnectorLocation">300,155.02 300,205.02</av:PointCollection>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</sap2010:ViewStateData>
<sap2010:ViewStateData Id="Flowchart_1" sap:VirtualizedContainerService.HintSize="614,813">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<av:Point x:Key="ShapeLocation">270,2.5</av:Point>
<av:Size x:Key="ShapeSize">60,75</av:Size>
<av:PointCollection x:Key="ConnectorLocation">300,77.5 300,104.02</av:PointCollection>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</sap2010:ViewStateData>
<sap2010:ViewStateData Id="Main_1" sap:VirtualizedContainerService.HintSize="654,933" />
</sap2010:ViewStateManager>
</sap2010:WorkflowViewState.ViewStateManager>
</Activity>
{
"name": "53900372_HowToTypeIntoTextBoxGeneratedDynamically",
"description": "Demo typing into dynamically populated text fields on mockaroo.com",
"main": "Main.xaml",
"dependencies": {
"UiPath.UIAutomation.Activities": "[18.4.2]"
},
"schemaVersion": "3.2",
"studioVersion": "18.4.1.0",
"projectVersion": "1.0.0.0",
"runtimeOptions": {
"autoDispose": false,
"excludedLoggedData": [
"Private:*",
"*password*"
]
},
"projectType": "Workflow",
"libraryOptions": {
"includeOriginalXaml": false,
"privateWorkflows": []
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment