1
嘗試使用AutoIT自動從Amazon Seller Central主頁點擊'Unshipped'小部件。這裏是我的功能看起來像,我試圖遵循維基中的獲取鏈接的集合,然後循環他們,但似乎並沒有爲我工作。在AutoIT中點擊特定的href
#include <IE.au3>
#include <MsgBoxConstants.au3>
Navigate("Unshipped")
Func Navigate($sNavigate)
Local $oIE = "https://sellercentral.amazon.com/hz/home"
Local $oLinks = _IELinkGetCollection($oIE)
Local $iNumLinks = @extended
Local $sTxt = $iNumLinks & " links found" & @CRLF & @CRLF
For $oLink In $oLinks
$sTxt &= $oLink.href & @CRLF
Next
MsgBox($MB_SYSTEMMODAL, "Link Info", $sTxt)
EndFunc
再次感謝MrAutoIt! –