Skip to main content
Skip table of contents

How to call a Function in a JavaScript file (*.js) that has been added into the Project path?

This is done using the include statement. 😀

  • Create a folder in your project called libjs

  • Place in this folder a file called lib.js

  • in this file :

    • CODE
      var testfct = function (data) {
      	log.warn("test" + data)
      }
      
  • Create a Sequence JS Step:

    • CODE
      include("jslib/lib.js")
      testfct("mydata")

When you run the sequence the testfct function will be called and the log will be displayed.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.