51Testing软件测试论坛

标题: 请赐教:winrunner怎么取得系统时间 [打印本页]

作者: colume    时间: 2005-6-21 15:51
标题: 请赐教:winrunner怎么取得系统时间
我用get_time 取得的系统时间看不懂,时间显示是这样的:1119339067
请问怎么看,或者用什么函数能转换一下,把它变成正常的日期格式,,谢谢各位,帮帮忙吧!比较急!!!
作者: shyfish    时间: 2005-6-21 16:35
time = time_str(get_time());
作者: colume    时间: 2005-6-21 18:29
谢谢,兄弟,我刚刚从事测试工作,今后还请多多关照! 我去试一下!
作者: terry_cheng    时间: 2005-8-31 15:00
谢谢飞鱼!
作者: aswoon911    时间: 2005-9-14 12:26
建议楼主先看wr的随机帮助,按F1,里面内容很不错的

关于你的问题,help里描述如下:In the following example, get_time runs a test for ten hours. After ten hours have elapsed, a second test is executed.
original_time = get_time( );

# Convert to seconds.

ten_hours = 10 * 60 * 60;
end_time = original_time + ten_hours;
while (get_time( ) < end_time)
        call first_test( );
call second_test( );




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2