html – 使用AutoIt从iframe获取表单名称

前端之家收集整理的这篇文章主要介绍了html – 使用AutoIt从iframe获取表单名称前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 AutoIt自动填写网站上的表格.

但我在从网站获取表单名称时遇到问题.我查看HTML的来源并查找表单及其名称,但我仍然收到IEStatus_noMatch错误.

是否有更简单的方法获取表单名称或如何找到它?

对于对象,我可能会遇到同样的问题.

$sUrl = "https://www.acgme.org/residentdatacollection/login.asp"
$oIE = _IEAttach($sUrl,"url")
If not isObj($oIE) Then
    $oIE = _IECreate()
    _IENavigate($oIE,$sUrl)
EndIf

; Get pointers to the login form and username and password fields
$o_form = _IEFormGetObjByName($oIE,"loginentry")
$o_login = _IEFormElementGetObjByName($o_form,"USERID")
$o_password = _IEFormElementGetObjByName($o_form,"PASSW")

解决方法

我从AutoIt论坛 here得到了这个答案

有两个框架,表格在第二个框架中,因此使用$o_frame = _IEFrameGetCollection($oIE,1)来获取第二个框架(索引1是第二个框架,索引0将是第一个框架).

然后使用以下方法从框架中获取表单:$o_form = _IEFormGetObjByName($o_frame,“loginentry”)

所以你的代码部分看起来像:

; get pointers to the login form and username and password fields
$o_frame = _IEFrameGetCollection($oIE,1)
$o_form = _IEFormGetObjByName($o_frame,"loginentry")

$o_login = _IEFormElementGetObjByName($o_form,"PASSW")

USERID和PASSW是隐藏字段,因此您不会看到它们被填写.如果表单未正确提交,请使用可见字段名称

$o_login = _IEFormElementGetObjByName($o_form,"posterior")
$o_password = _IEFormElementGetObjByName($o_form,"fossa"
原文链接:https://www.f2er.com/html/242576.html

猜你在找的HTML相关文章