标题: 关于定时运行脚本的问题 [打印本页] 作者: wiwimeier 时间: 2008-7-18 08:58 标题: 关于定时运行脚本的问题 我创建一个.vbs,在控制面板的Schedule里面定义好自己的task,这样来让它定时的自动运行
这个脚本可以运行,但是不知道为什么运行到我录制的动作时都需要点击一下Run才能够执行相应的动作?作者: walker1020 时间: 2008-7-18 09:09
你的 .vbs 文件里面都有些什么内容? 还是把 具体脚本 提供上来吧,不要让别人猜测可能的原因了作者: wiwimeier 时间: 2008-7-18 09:13
这是我从网上找的,没什么问题啊~~
Dim qtApp 'As QuickTest.Application ' Declare the Application object variable
Dim qtTest 'As QuickTest.Test ' Declare a Test object variable
Dim qtResultsOpt 'As QuickTest.RunResultsOptions ' Declare a Run Results Options object variable
Set qtApp = CreateObject("QuickTest.Application") ' Create the Application object
qtApp.Launch ' Start QuickTest
qtApp.Visible = True ' Make the QuickTest application visible
' Set QuickTest run options
qtApp.Options.Run.ImageCaptureForTestResults = "OnError"
qtApp.Options.Run.RunMode = "Fast"
qtApp.Open "E:\test\001", True ' Open the test in read-only mode
' set run settings for the test
Set qtTest = qtApp.Test
qtTest.Settings.Run.OnError = "NextStep" ' Instruct QuickTest to perform next step when error occurs
Set qtResultsOpt = CreateObject("QuickTest.RunResultsOptions") ' Create the Run Results Options object
qtResultsOpt.ResultsLocation = "E:\test\002" ' Set the results location
qtTest.Run ' Run the test
'qtTest.Close ' Close the test
Set qtResultsOpt = Nothing ' Release the Run Results Options object
Set qtTest = Nothing ' Release the Test object
Set qtApp = Nothing ' Release the Application object
麻烦帮我看看作者: wiwimeier 时间: 2008-7-18 09:19
这是我的脚本,输入参数化的数据后把整个页面在通过另存为的方式保存成html的页面,但是每次都走到Browser("运单查询ver.01").WinToolbar("ToolbarWindow32").Press "文件(&F)"这里就不动了,如果我点击Run就接着运行