如何获取Internet Explorer网页的内容主体

时间:2019-04-02 12:47:29

标签: powershell-v5.1

我正在尝试使用new-object -com internetexplorer.application获取IE的内容主体,我知道它存在命令_$.Document.body.outerText,但是在对象上不存在“ body”。它存在_$.Document,当我打印对象时,结果为System.__ComObject

这是在服务器2012中执行的命令行。而localhost,它可以运行的命令行。     如何获得满足感的身体?

$ie = New-Object -ComObject InternetExplorer.Application -Property @(Visible=$true)
$ie.Nagivate("google.com)
do {sleep 1} while ($ie.Busy)
$ie.Document.body.outerText

0 个答案:

没有答案