通过VBA与Chromeparsing网页

我想用VBA从网站中提取信息,并使用Chrome而不是Internet Explorer。 我已经设法从VBA打开页面,但我正在努力的是如何参考打开的网页。

所以对于Internet Explorer我有:

Set objIE = CreateObject("InternetExplorer.Application") objIE.Navigate (s1.Cells(x, 1)) key = objIE.Document.getElementsByClassName("...").Innertext 

现在我想复制这个,但在Chrome中。 我设法做到这一点:

 Shell ("C:\Program Files (x86)\Google\Chrome\Application\chrome.exe -url " & s1.Cells(x, 1)) 

但我不知道如何前进。