PowerShell - 无法使用Invoke-WebRequest查找Web元素

时间:2017-08-09 23:43:50

标签: powershell web-scraping

我正在尝试使用PowerShell从网页http://www.theedge.co.nz/home.html抓取数据。我想从这个页面中提取歌曲标题和艺术家文字。

enter image description here

当我检查它们时,我可以看到元素存在。

enter image description here

但是当我运行以下脚本时,我无法捕获信息:

$Web = Invoke-WebRequest -Uri "http://www.theedge.co.nz/home.html"
$web.AllElements | Where {$_.tagname -eq "p"} | select innertext

我不确定我的代码是错误还是限制,而且无法使用PowerShell实现。

提前致谢。

0 个答案:

没有答案