尝试使用 AutoIT 自动单击亚马逊卖家中心主页上的“未发货”小部件。这是我的函数的样子,我尝试按照 Wiki 中的函数获取一组链接,然后遍历它们,但似乎对我不起作用。
#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