IE内嵌网页登陆后,点击链接在弹窗中为何要重新登陆!
按理来讲。我已经在内嵌IE中登陆过账号了。但在内嵌网页操作中有一个链接必须要弹出来才能来到打发票页面。。。但我一点它 弹出的确是登陆页而不是打发票的页面。为什么?
代码如下!#include <IE.au3>
Dim $results_WebCapture = ""
Local $Form2 = GUICreate("", 1024, 768, -1, -1)
GUISetState(@SW_SHOW)
Run("C:\Program Files\Internet Explorer"&"iexplore.exe")
Local $oIE = ObjCreate("Shell.Explorer.2")
Local $obj_IE = GUICtrlCreateObj($oIE, 0, 0, 1024, 768)
Local $EventObject = ObjEvent($oIE, "IEEvent_", "DWebBrowserEvents")
$oIE.navigate("http://zxfp.xads.gov.cn/xalt/login/login.jsp", 0)
While 1
Sleep(5)
WEnd
|