2
我試圖登錄使用PowerShell的網頁,但「登錄」按鈕,編碼是這樣的:如何使用PowerShell單擊圖像?
<input type="image" src="http://tolimages.traderonline.com/i... alt="Sign In">
我應該在PowerShell中使用什麼樣的功能,可以點擊圖片上的,因此,登錄?
謝謝!
我試圖登錄使用PowerShell的網頁,但「登錄」按鈕,編碼是這樣的:如何使用PowerShell單擊圖像?
<input type="image" src="http://tolimages.traderonline.com/i... alt="Sign In">
我應該在PowerShell中使用什麼樣的功能,可以點擊圖片上的,因此,登錄?
謝謝!
試試這個:
$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();