Profiling -

performance.mark and performance.measure

Profiling Example

Time taken: NA ms
Results

mark


performance.mark("name")
performance.getMarks()

name
The name for the mark

measure


performance.measure("name", "startMark",  "endMark")
performance.getMeasures()

name
The name for the measure
startMark
The name of the mark that marks the start of the scenario
endMark
The name of the mark that marks the end of the scenario

Important: Debugging impacts performance and is turned on when you open F12.