我正在尝试使用PowerShell登录网页,但是'登录'按钮编码如下:
<input type="image" src="http://tolimages.traderonline.com/i... alt="Sign In">
我应该在PowerShell中使用哪些功能才能点击图片,因此,登录?
谢谢!
答案 0 :(得分:0)
试试这个:
$url = "http://xxxxxxxxxx/"
$ie = New-Object -ComObject InternetExplorer.Application
$ie.Visible = $true
$ie.Navigate($url)
While ($ie.Busy) { Start-Sleep -Milliseconds 400 }
$Link = $ie.document.getElementsByTagName("input") | where-object {$_.type -eq "image"}
$Link.click();