|
以下是代码
Set xlapp= createobject ("excel.application")
xlapp.application.visible = true
Set xlbook = xlapp.workbooks.open("d:\result.xls")
Set xlsheet = xlbook.worksheets("sheet1")
checkP1 =Browser("Blog@35").Page("Blog@35").Image("banner").check (CheckPoint("banner"))
If checkP1 = true Then
Browser("Blog@35.com").Page("Blog@35.com").WebEdit("user_openid").Set 22222
Browser("Blog@35.com").Page("Blog@35.com").WebButton("Input").Click
End if
wait (1)
If Browser("Blog@35.com").Page("登录 - Blog@35").Exist(2) = true Then
'Reporter.ReportEvent micDone, "不存在的用户", "不存在的用户"
xlsheet.cells(1,3) = "执行成功,改步骤执行的是:输入不存在的帐号"
End If
Browser("Blog@35.com").Page("登录 - Blog@35").Link("首 页").Click
xlbook.SaveAs "d:\result.xls"
xlapp.application.quit
Set xlapp = nothing
xlsheet.cells(1,3) = "执行成功,改步骤执行的是:输入不存在的帐号" excel会提示是否要修改,但是点击确定以后,excel里面的内容和没有修改前是一样的。 |
|