0
我想弄清楚如何點擊匹配特定模式的網址。 例如:Autoit - 在網頁中搜索網址並點擊它
#include <IE.au3>
#include <MsgBoxConstants.au3>
local $pattern = "/123/"
Local $oIE = _IECreate("www.example.com",0,1,1,1)
Local $oLinks = _IELinkGetCollection($oIE)
For $oLink In $oLinks
If StringInStr($oLink, $pattern) Then
_IEAction($oLink, "click")
sleep(700)
_IEQuit($oIE)
ExitLoop
EndIf
Next
基本上我需要實現的是, 如果$ OLINK在$ oLinks包含$模式 - 點擊它。 上述程序出於某種原因不起作用。
有什麼建議嗎?
謝謝
不知道,如果你可以用'StringInStr'的對象。嘗試使用'StringInStr($ oLink.href,$ pattern)'代替。 –
它工作!非常感謝 :) – user2518751