Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleSIL File
string issue = "EX-1";
string cfName = "textField";
function getCFValue() {
    string groovyscript = readFromTextFile("Groovy/getCfValue.groovy");
    groovyscript = replace(groovyscript, "issueVAR$issue$", issue);
    groovyscript = replace(groovyscript, "cfNameVAR$cfName$", cfName);
    return executeGroovyScript(groovyscript);
}
runnerLog(getCFValue());

...