vba下selenium Chrome 无头模式抓取Mtime新闻示例代码

孤街浪徒 提交于 2020-11-11 19:48:07

vba下selenium Chrome 无头模式抓取Mtime新闻示例代码
Sub qwe()
Dim driver As New ChromeDriver, post As Object
With driver
.AddArgument "--headless" ''This is the fix
.Get "http://news.mtime.com"
End With





For Each post In driver.FindElementByClass("newscontent").FindElementsByTag("h4")
Debug.Print (post.Text)
Next post

End Sub

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!