我在Excel中有一个程序,它在Internet Explorer中打开一个链接并抓取一些数据,然后将数据复制到Excel。但是在Internet Explorer中加载页面会减慢数据处理速度。
我有可能在Google Chrome中访问HTML数据吗?我这里有一个代码可以在Google Chrome中打开链接,但无法从页面中提取数据。提前谢谢。
Dim chromePath As String
chromePath = """C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"""
Shell (chromePath & Sheets("Website Data").Cells(1, 1))
Set internetdata = chromePath.document
End Sub