I have a situation where i created one project [MonkeytalkProject1] and there i have added multiple folders like Login, Logout. Now, i have written script for login.mt and logout.mt. I want to use logout.mt script in login.mt script in this way [Script louout.mt Run]. but when i run login.mt scrpt then it won't logout and giving me error as [Logout.mt source not found] It would be great if someone help me. Also, please let me know proper test design structure that i need to follow while creating a project in MonkeyTalk ? Thanks in Advance.
How to use monkeytalk test script in multiple subfolders ? I have created folders like Login, Logout in one project
136 Views Asked by user3815836 At
2
There are 2 best solutions below
0

You can achieve this by using TestLibrary. As stated, you want to use Logout folder scripts in Login folder then you just need to select all required script from Logout folder and right click then select New -> Testlibrary. Now select the source folder [Login] where you want to create library by giving some logical name like TestLibrary_Logout.mtl
Now you can call logout.mt script in login.mt as
Script louout.mt Run
Happy Automation !!
Refer This for more details
Monkeytalk works on flat directory structure, so you can't call a script from another folder.
Put your login and logout as a separate functions in a js file and include that js in your script file and then call those functions as needed