Page 1 of 1

Calling Recording from a Recording

Posted: Thu Apr 12, 2012 9:13 pm
by LPG
Hi,

Is there a way to call a Recording from a Recording?

Right now drag recordings to the Test Suite, and some of them are used numerous times. So instead of doing this, could I rather have a line in the Recording file (or code) to grab another Recording?

Thanks

Re: Calling Recording from a Recording

Posted: Fri Apr 13, 2012 10:35 am
by Support Team
Hi,
LPG wrote:Is there a way to call a Recording from a Recording?
Just call the recording inside a user code action.
public void CallRecording()
{
   Recording2.Start();
}
But you won't see this recording as a different module in the report, the logs are placed under the module where you call the recording from.

Regards,
Peter
Ranorex Team