com.meterware.httpunit.scripting
public interface ScriptingEngine
| Method Summary | |
|---|---|
| void | clearCaches()
Clears any cached values, permitting them to be recomputed as needed. |
| String | evaluateScriptExpression(String urlString)
Evaluates the specified string as JavaScript. |
| String | executeScript(String language, String script)
Interprets the specified script, which may include global function definitions. |
| ScriptingEngine | newScriptingEngine(ScriptableDelegate child)
Returns a new scripting engine for the specified delegate. |
| boolean | performEvent(String eventScript)
Interprets the specified script and returns a boolean result. |
| boolean | supportsScriptLanguage(String language)
Returns true if this engine supports the specified script.
|