axlGetPreRunScript
axlGetPreRunScript(t_sessionName t_testName) =>t_filePath
Description
Returns the path to the pre-run script file attached to the given test.
Arguments
|
Name of the test for which you want to get the path to the pre-run script. |
Value Returned
|
If no script is set for the given test, returns a blank string. |
Examples
The following example returns the details of the pre-run script for the AmpTest1 test:
axlsession=axlGetWindowSession( hiGetCurrentWindow())
"session0"
axlGetPreRunScript(axlsession, "AmpTest1")
=> "./myScript"
Related Topics
Return to top