是否可以实现以下powershell脚本?
目的是稍后调用脚本块以获取 html 控件。
$sites = @{
site1= @{
url = ".......";
inputUserID = { $doc.getElementsByID("username"]) }; #Some code to get the html input control
inputPassword = { $doc.getElementsByName("passowrd"]) }; #Some code to get the html input control
};
.....
}
$ie = New-Object -ComObject "InternetExplorer.Application"
$ie.navigate($sites[$site]["url"])
$ie.visible = $true
while ($ie.busy) { start-sleep -milliseconds 1000; }
... #Get the input controls and fill the values
问题已更新。够清楚吗?应该不难理解。