您好有谁知道如何使用powershell在Internet Explorer中打开和关闭选项卡。我可以使用以下方法打开一个
$navOpenInNewTab = 0x800
# Get running Internet Explorer instances
$oApp = New-Object -ComObject shell.application
# Grab the last opened tab
$oIE = $oApp.Windows() | Select-Object -Last 1
# Open link in the new tab nearby
$oIE_Total_Sends = $oIE.navigate($link, $navOpenInNewTab)
while ($oIE.busy) {
sleep -milliseconds 50
}
我如何通过Powershell关闭此新选项卡,为什么不能访问
getElementByID
对象上的Internet Explorer方法(如$oIE.Document
)。 最佳答案
这是一个将关闭IE中选项卡的功能。
Function Close-IETab {
param($url)
$oWindows = (New-Object -ComObject Shell.Application).Windows
foreach ($oWindow in $oWindows.Invoke()) {
if ($oWindow.Fullname -match "IEXPLORE.EXE" -and $oWindow.LocationURL -match $url) {
Write-verbose "Closing tab $($oWindow.LocationURL)"
$oWindow.Quit()
}
}
}
关于powershell - 如何使用Powershell关闭现有IE窗口中的选项卡,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49575365/