TestComplete aqPerformance
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2023
08:54 AM
09-18-2023
08:54 AM
TestComplete aqPerformance
For the below script, in the Log.Message section, how do i enter string in to it to display a messsage like " The calculations took" +aq.Performance.Value() )?
I get a run time error when trying above
Sub getTime()
' Start a time counter
aqPerformance.Start()
' Do some actions
' Log the elapsed time, in ms
Log.Message(aqPerformance.Value)
End Sub
Solved! Go to Solution.
Labels:
- Labels:
-
Desktop Testing
-
Script Tests
2 REPLIES 2
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2023
08:59 AM
09-18-2023
08:59 AM
I think in VBScript it's,
Log.Message("The calculations took " & aq.Performance.Value())
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2023
09:01 AM
