Browser("Browser").Window("文件上传 -- Web Page Dialog").Page("文件上传").WebFile("FILE1").Click
Browser("Browser").Window("文件上传 -- Web Page Dialog").Dialog("Choose file").WinListView("SysListView32").Activate "My Computer"
Browser("Browser").Window("文件上传 -- Web Page Dialog").Dialog("Choose file").WinListView("SysListView32").Activate "Local Disk (D:)"
Browser("Browser").Window("文件上传 -- Web Page Dialog").Dialog("Choose file").WinListView("SysListView32").Select "Example1.xls"
Browser("Browser").Window("文件上传 -- Web Page Dialog").Dialog("Choose file").WinButton("Open").Click
Browser("Browser").Window("文件上传 -- Web Page Dialog").Page("文件上传").WebButton("上传它!").Click
复制代码
我在上传之前,想检查一下Example1.xls是不是存在?怎么写脚本啊?请高手指教!先谢谢了!
[ 本帖最后由 boyeestudio 于 2008-7-24 11:18 编辑 ]作者: 假装不在 时间: 2008-7-24 11:38
Function ReportFileStatus(filespec)
Dim fso, msg
Set fso = CreateObject("Scripting.FileSystemObject")
If (fso.FileExists(filespec)) Then
ReportFileStatus =ture
Else
ReportFileStatus =false
End If
End Function
if ReportFileStatus("c:/Example1.xls") then
Browser("Browser").Window("文件上传 -- Web Page Dialog").Dialog("Choose file").WinListView("SysListView32").Select "Example1.xls"
end if