首页 > 代码库 > get_hotnews_no1_from_baidu

get_hotnews_no1_from_baidu

$ie = new-object -com "InternetExplorer.Application"
$ie.navigate("http://www.news.baidu.com/")
$ie.visible = $true
sleep -milliseconds 2500

$ID = $ie.Document.getElementById(‘focus-top‘)
$ID1 = $ID.getElementsByTagName(‘li‘)
$ID2 = $ID1 | where {$_.className -contains "hdline0"}
$ID2.innerText


get_hotnews_no1_from_baidu