Issue Details
I am using the example sequence located at
<TestStand Public>\Examples\TestStand API\Building a Sequence Using API\LabVIEW\Building a Sequence Using API - XML.seq to build my sequence dynamically using specifications listed in a XML file. I want to create a Sequence Call step in my generated file, so I use the following syntax in the XML file:
<Step Name="Call subSequence" Type="SequenceCall" Adapter="Sequence Adapter">
<Prop LookupString="Module.SFPath">.\path\test.seq</Prop>
<Prop LookupString="Module.UseCurFile">false</Prop>
<Prop LookupString="Module.SeqName">MainSequence</Prop>
<Prop LookupString="Module.UsePrototype">true</Prop>
</Step>However, I am facing the following error in the sequence call of my generated sequence file:
The error states "The parameters specified by the step do not match the sequence parameters".
How do I make sure that the parameters are properly loaded in the sequence call?