02-01-2010 09:59 AM
02-02-2010 01:35 AM
2. Your stuff that creates a SequenceStuff e.g. "Hello"
3. Step stepSeqCall = engine.NewStep(AdapterKeyNames.SequenceAdapterKeyName, "SequenceCall");4.stepSeqCall.Name = "HELLO" or sequenceStuff.Name;
5. objModule.UseCurrentFile = true;
6.objModule.SequenceName = stepSeqCall.Name ;
7.seqMain.InsertStep(stepSeqCall, nSeq, StepGroups.StepGroup_Main);
Greetings from Germany
Juergen
02-02-2010 02:51 AM
02-02-2010 03:31 AM
Hi
Calling engine.NewSequenceFile();
creates a file where a empty MainSequnence is persent. So you not need to create it once more.
To get the SeqenceObject for inserting your steps in MainSequence. Use
GetSequenceByName("MainSequence") for doing this.
Juergen