Including other Files¶
Purpose¶
The eval keyword lets you use external functions and data structures in your test script; eval
is a JavaScript reserved word.
Usage¶
See the example below:
function Test()
{
eval(File.Include("myfunctions.js"));
}