$ie=New-Object -ComObject "InternetExplorer.Application"
$ie.Width=1280
$ie.Height=768
$ie.Navigate("www.baidu.com")
$ie.Visible=$true
[System.Threading.Thread]::Sleep(1000)
$doc=$ie.Document
$kw=$doc.getElementById('kw')
$kw.value='baidu'
$su=$doc.getElementById('su')
$su.click()
Write-Host "pass" -BackgroudColor White