1

设想:

我登录了一个网站,并想让 AutoIt 在输入字段中写入。

我怎样才能做到这一点?

4

1 回答 1

3

尝试这样的事情

   #include<IE.au3>
$sUsername = "Username"
$sPassword = "Password"
$sUrl = "https://yoururl.com"
$oIE = _IECreate($sUrl, 0, 1, 0, 1)
Sleep(2000)
$oHWND = _IEPropertyGet($oIE, "hwnd")
WinSetState($oHWND, "", @SW_MAXIMIZE)
$oForm = _IEFormGetCollection($oIE, 0)
$oUsername = _IEFormElementGetObjByName($oForm, 'login') ; change name !
$oPassword = _IEFormElementGetObjByName($oForm, "password") ; change name !
_IEFormElementSetValue($oUsername, $sUsername)
_IEFormElementSetValue($oPassword, $sPassword)
_IEFormSubmit($oForm)

还有一个用于 Firefox 的 UDF FF.au3,但如果您只需要在 PC 上使用该脚本,我会使用greasemonkey。

于 2013-02-25T11:53:20.400 回答