hp uft - UFT/QTP=Is it possible to get 'Transaction' time from result viewer? -
i using 'transaction' feature find out exact loading time. getting transaction time in 'result viewer'. possible transaction time in excel or possible store transaction time in variable?
please find attached screen shot more details
use following functions, call these @ appropriate places. if want use once remove function syntax.
  function starttimer   itimerstart = timer()   end function    function stoptimer  itimerstop = timer()  datatable("timetaken", dtlocalsheet) = itimerstop - itimerstart  end function      
Comments
Post a Comment