PowerShell
A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
362 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I would like to open a link "www.google.com"
fill a text in textbox
and then submit
$ie = New-Object -ComObject 'InternetExplorer.Application'
$ie.Visible=$true
$ie.Navigate("www.google.com")
$ie.Document.getElementsById('textbox').value='hi'
Q: (i can not get the textbox object to fill the text, and so on submit)