回复 3# yu2n - Set ie=WScript.CreateObject("InternetExplorer.Application")
- ie.visible=true
- ie.navigate "http://www.sport.gov.mo/zh/vbs/login"
- While ie.ReadyState <> 4 Or ie.Busy = True
- Do
- Wscript.Sleep 200
- Loop Until ie.ReadyState=4
- '打帳號
- ie.document.getElementById("username").value="河蟹河蟹"
- '打密碼
- ie.document.getElementById("password").value="河蟹河蟹"
- '按確定
- ie.document.all("btn").click
- Wscript.Sleep 6000
- '進入下一個頁面,期望在新頁面中的下拉菜單中自動選擇"奧林匹克體育中心(羽毛球場)"
- ie.document.getElementById("venue").value=7
- Wend
复制代码 以下是錯誤的提示
是不是因為網頁進入了下一個頁面,所以需要一些方式才可以令VBS從新讀取網頁的資料??? |