GetAUTFileVersion
string GetAUTFileVersion()Description
Returns the file version of the application under test (AUT) as stored in the executable’s metadata.
If the version information cannot be retrieved, the method logs the issue and returns an empty string.
Return
string - File version of the AUT, or an empty string if unavailable.
Example
void main()
{
string version = GetAUTFileVersion();
Print(version);
}