Ask a Question

Error while Calling Script Routine from another Script Routine

SOLVED
sdudani
Occasional Contributor

Error while Calling Script Routine from another Script Routine

Error.PNGGetting an error while calling routine from another routine. It gets executed but in the end I get this error. Tried with semicolon as well in the end. Same error.

Error.PNG

4 REPLIES 4
tristaanogre
Esteemed Contributor

What's in the "Login" unit that you're set up for?  How do you have the modules.export set up?  It might be helpful to see how that's working to know better how to help you.


Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----

Why automate?  I do automated testing because there's only so much a human being can do and remain healthy.  Sleep is a requirement.  So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.

Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
cunderw
Community Hero

What does your export look like in the Login script? Are exporting the testLogin function?


Thanks,
Carson

Click the Accept as Solution button if my answer has helped

FYI, I tried something very simple.  I have one unit called "Login" that I did the following:

 

function testLogin(){
    Log.Message('test login')
}

module.exports = Login

I then created unit that looks like this

 

var Login = require('Login');

function test1(){
    Login.testLogin()
}

When I run test1 in that second unit, I get no error.  So... this tells me that there's something going on in the "Login" unit that you are exporting that we can't see.  Can you share all your code, please?

 

Thanks.


Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----

Why automate?  I do automated testing because there's only so much a human being can do and remain healthy.  Sleep is a requirement.  So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.

Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
sdudani
Occasional Contributor

Thanks so much. I was maing a mistake while exporting. Followed your methid and it has helped

cancel
Showing results for 
Search instead for 
Did you mean: