1.WinRunner如何把Real类型转化为指数表示方法
  答:指数类型转化为real类型,可以通过下边的代码
  clearcase/"target="_blank">cccccc>var=5.3569E+10;
  pause(var);
  #显示53569000000
  Real类型转化为指数表示方式
  var=sprintf("%e",53568544768);
  pause(var);
  #displays 5.356854e+010
  2.什么是同步点,怎样用它?他和Wait有什么不同?
  答:从功能上他们都可以实现脚本和被测试程序同步的问题,不过同步点有window/object,bitmap方式,她等待的是某个等待的对象窗体,bitmap的出现,一定程度她也可以作为验证点wait这点上无法实现相同的效果。有的脚本中即使你加入wait,但是你无法知道下边的对象窗体图片是否是成需要运行的正确出现的
  3.tl_step和tl_step_once的区别
  答:tl_step和tl_step_once都是把运行状态信息放到运行结果中去,区别在如果连接TD,TL_STEP把每步状态信息都插入到测试结果中去,tl_step_once如果连接td,只是插入一次运行步骤的名字
  代码例子:
  --------------------------------------------------------------------------------
  for(i=1;i<4;i++){
  tl_step("Step",PASS,"reporting step,#"&i);
  tl_step_once("Step Once",PASS,"reporting step once,#"&i);
  }
  --------------------------------------------------------------------------------
  WR中的报告:
  Step:Step,Status:PASS,Descrīption:reporting step,#1
  Step:Step Once,Status:PASS,Descrīption:reporting step once,#1
  Step:Step,Status:PASS,Descrīption:reporting step,#2
  Step:Step Once,Status:PASS,Descrīption:reporting step once,#2
  Step:Step,Status:PASS,Descrīption:reporting step,#3
  Step:Step Once,Status:PASS,Descrīption:reporting step once,#3
  TD中的报告:
  Step:Step,Status:PASS,Descrīption:reporting step,#1
  Step:Step Once,Status:PASS,Descrīption:reporting step once,#1
  Step:Step,Status:PASS,Descrīption:reporting step,#2
  Step:Step,Status:PASS,Descrīption:reporting step,#3
  4.WinRunner和TD集成后脚本运行很慢是什么原因呢?
  答:安装TD和WinRunner服务器上需要独占100GByte,TD需要10OGHZ时钟速度16GB RAM的处理平台
  5.WR是否支持vs.net
  根据Mercury的介绍,他们的对.Net的支持转移到QuickTest Pro上了,如果你需要自动化测试.Net程序(不是web的),建议用
  QuickTestPro。也是说wr不支持vs.net开发的程序6.我对比两个文件file1.txt和file2.txt,文本内容如下
  file1.txt内容如下:
  10523 8315 6804 8387 3643 4550 3457 3649
  file2.txt内容如下:
  190176 155737 117417 145194 65314 81431 64522 63324
  代码如下:file_compare("C:\file1.txt","C:\file2.txt","save");