使用HWND选择IE窗口

时间:2016-05-02 15:49:13

标签: powershell internet-explorer com hwnd

想知道是否可以根据HWND属性(或类似)选择IE窗口。我的脚本单击一个链接,在单独的窗口中打开一个新页面,我希望能够使用这个新窗口。

这是我的代码:

$ie.Navigate("https://chaseloanmanager.chase.com/Chaselock/ViewOnlineGuide.aspx") # opens page in new window
while ($ie.Busy -eq $true){Start-Sleep -Seconds 2}

$childWindow = Get-Process | Where-Object {($_.ProcessName -eq 'iexplore')} | Get-ChildWindow | Where-Object {$_.ChildTitle -match 'Lending'} 
$childWindow.MainWindowHandle # gets HWND of new window

$shell = New-Object -ComObject Shell.Application
$ie3 = $shell.Windows() | Where-Object {$_.HWND -match $childWindow.MainWindowHandle} # does not find window

1 个答案:

答案 0 :(得分:0)

您可以在Windows()中搜索Shell.Application来获取IE comobject。

$shell = New-Object -ComObject Shell.Application

$ie = $shell.Windows() | Where-Object { $_.LocationURL -match 'Lending' }
#$ie = $shell.Windows() | Where-Object { $_.HWND -eq 2951084 }

$ie.Navigate("http://www.stackoverflow.com")
相关问题