本帖最后由 nmgwddj 于 2010-12-29 10:36 编辑
你那个网站搜索后的网站是http://www.google.com.hk/webhp?c ... channel=clicksearch
所以我直接调用这个网站,#include <IE.au3>
#include <File.au3>
$oIE = _IECreate("http://www.google.com.hk/webhp?client=aff-1616dh&channel=clicksearch")
While 1
$fcl = _FileCountLines('data.txt')
$ran = Random(1, $fcl, 1)
$frl = FileReadLine('data.txt', $ran)
$oForm = _IEFormGetObjByName($oIE, "f")
$oQuery = _IEFormElementGetObjByName($oForm, "q")
_IEFormElementSetValue($oQuery, $frl)
_IEFormSubmit($oForm, 0)
_IELoadWait($oIE)
Sleep(5000)
_IEAction($oIE, 'back')
WEnd
同目录下放一个data.txt
里边内容自己编写 格式为
测试
数据流量
身高之谜
女人
男人
什么东西
我也不知道
等等 |