In this section of the lesson, you will learn how to insert the second script, which adds a user account, in the original script before the code that perform the request for an auto quote.
Executing scripts within scripts is a powerful method for efficiently testing the same basic actions in scripts.
Workbench.RunScript ("AddAccount")
where AddAccount is the name of the second script that you created.
Because we want to add the account information before we execute the quote steps, we added the Workbench.RunScript command before the With statement. To execute the AddAccount script after the quote steps, add the Workbench.RunScript command after the End With statement.