xieqingx 发表于 2013-8-27 14:08:13

如何自动登陆QQ应用网页?

如何自动登陆http://qqapp.qq.com/app/100616028.html?

我刚学不会啊,那位前辈做个范例啊
进入应用,输入QQ账号和密码的操作啊

tutou9997 发表于 2013-8-28 14:28:07

我也是一知半解 看下这个能不能帮到你
#include <IE.au3>
$oIE = _IECreate ("http://mail.163.com")
$oForms = _IEFormGetCollection ($oIE)
MsgBox(0, "表单信息", "这个页面上共有" & @extended & "个表单")
For $Form In $oForms
MsgBox(0, "表单名称", $Form.name)
$oQuerys = _IEFormElementGetCollection ($Form)
For $Query In $oQuerys
MsgBox(0, "表单控件信息", "名称:"&$Query.name & " 类型:"&$Query.type)
Next
Next

xieqingx 发表于 2013-9-4 10:09:54

谢谢,要详细点的。这样我不会应用啊
页: [1]
查看完整版本: 如何自动登陆QQ应用网页?