使用 Powershell 在 IE11 中检查复选框
Using Powershell to check Checkboxes in IE11
所以我正在使用 powershell 搜索基于 HTML 的数据库。
带复选框的 HTML 是:
INPUT name=extend id=perextend onchange=javascript:disabledPagination(); type=checkbox value=on
现在我搜索并尝试了不同的选项,但仍然没有成功:
$chk = $ie.Document.getElementsByTagName("extend") | where-object {$_.type -eq "checkbox"}
$chk.Checked = $True
但它给我一个错误:
Property 'Checked' cannot be found on this object; make sure it exists and is se
ttable.
Property 'Checked' cannot be found on this object; make sure it exists and is
settable.
At D:\Data\Argos excel\Untitled1.ps1:51 char:1
+ $chk.Checked = $True
+ CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
任何帮助都会很棒。对不起,如果这是一个常见的错误,我是 powershell 的新手
看来我给它分配了错误的元素并查看调试器:
<td width="230"><input type="checkbox" name="extend" value="on" onchange="javascript:disabledPagination();" id="orgextend">
然后使用 ID 和 .Checked = $true 解决了我的问题:
$chk = $ie.Document.getElementById("orgextend").Checked = $true
所以我正在使用 powershell 搜索基于 HTML 的数据库。 带复选框的 HTML 是:
INPUT name=extend id=perextend onchange=javascript:disabledPagination(); type=checkbox value=on
现在我搜索并尝试了不同的选项,但仍然没有成功:
$chk = $ie.Document.getElementsByTagName("extend") | where-object {$_.type -eq "checkbox"}
$chk.Checked = $True
但它给我一个错误:
Property 'Checked' cannot be found on this object; make sure it exists and is se ttable. Property 'Checked' cannot be found on this object; make sure it exists and is settable. At D:\Data\Argos excel\Untitled1.ps1:51 char:1
+ $chk.Checked = $True + CategoryInfo : InvalidOperation: (:) [], RuntimeException + FullyQualifiedErrorId : PropertyNotFound
任何帮助都会很棒。对不起,如果这是一个常见的错误,我是 powershell 的新手
看来我给它分配了错误的元素并查看调试器:
<td width="230"><input type="checkbox" name="extend" value="on" onchange="javascript:disabledPagination();" id="orgextend">
然后使用 ID 和 .Checked = $true 解决了我的问题:
$chk = $ie.Document.getElementById("orgextend").Checked = $true