I want to make my karate framework modular. I have some api's calls and want to make sure that these calls are independent for reusability. And call them via another js functions.
Is this possible in karate?
Example: function(payload){
GenerateSms(payload); }
Tried different approaches of calling js functions from one file to another but it's not possible.