使用多个选项卡运行Internet Explorer

时间:2014-08-07 08:24:09

标签: .net internet-explorer powershell

如何使用COM(powershell,C#等等 - 无关紧要)或命令行参数运行IE。在一个窗口中有多个标签。

例如:

$ie = New-Object -ComObject InternetExplorer.Application
$ie.Visible = $true
$ie.Navigate("yahoo.com")
$ie.Navigate("google.com")

我想要这样的东西,但是在一个标签内导航,打开一秒钟。 有什么想法吗?

1 个答案:

答案 0 :(得分:0)

找到答案:使用navigate flags我们可以管理这种机制。

$ie = New-Object -ComObject InternetExplorer.Application
$ie.Visible = $true
$ie.Navigate("yahoo.com")
$ie.Navigate("google.com", 0x0800)