是否有人有autoIt的示例代碼?AutoIt在Firefox中填寫表格 - 讀取和寫入CSV
我想從iMacros更改爲autoIt,我需要一個示例代碼如何從CSV文件讀取,在Firefox中填寫表格並將解決方案寫入CSV。
是否有人有autoIt的示例代碼?AutoIt在Firefox中填寫表格 - 讀取和寫入CSV
我想從iMacros更改爲autoIt,我需要一個示例代碼如何從CSV文件讀取,在Firefox中填寫表格並將解決方案寫入CSV。
用於讀取文件,你可以使用FileRead(...)
,對分裂的數據,可以使用StringSplit(...)
:
$CVSFile = FileRead("ThisIsMyCVSFile.txt")
If @error Then MsgBox(0, "", @error)
$splitCVS = StringSplit($CVSFile, ",", 1)
MsgBox(0, "", $splitCVS[1]) // make a For-loop from 0 to splitcvs[0]
而且,我不知道你要填寫在Firefox的東西,但在這裏是一個例子:
$id = ""
ControlSend("Mozilla Firefox Start Page - Mozilla Firefox", "", $id, "This is what I want to send")
替換爲「形式」的ID $id
變量要寫入。