Does phantomjs have something similar to node_modules (from nodejs) ?
This is so I can use something like require('moduleName'); to make the code cleaner.
|
Does phantomjs have something similar to node_modules (from nodejs) ? This is so I can use something like |
|||
|
|
|
You can use injectJs to dynamically load phantom scripts.
From the wiki injectJs(filename) {boolean} Injects external script code from the specified file into the Phantom outer space. If the file cannot be found in the current directory, libraryPath is used for additional look up. This function returns true if injection is successful, otherwise it returns false. |
|||
|
|