我需要使用power shell单击aspx webform中的超链接.我怎样才能做到这一点? 该链接也显示一个下拉菜单,我必须从该链接中选择正确的选项. $ie = new-object -com internetexplorer.application$ie.visible=
该链接也显示一个下拉菜单,我必须从该链接中选择正确的选项.
$ie = new-object -com internetexplorer.application $ie.visible=$true $ie.navigate('http://www.somewhere.com') while($ie.busy) {sleep 1} $link = $ie.Document.getElementsByTagName('A') | where-object {$_.innerText -eq 'Click here'} $link.click()