如何使用 vba 从 Google Chrome 获取数据

如何使用 vba 从 Google Chrome 获取数据

在我的一个要求中,我必须打开一个内部网站并从该页面提取数据。但该网站有一些限制,只能在 Chrome 中打开。我有自动化 IE 的经验,我尝试了为 Chrome 创建对象的相同方法。

Set CHromeapp = CreateObject("Chrome.Application")

但是它抛出错误“activex 组件无法创建对象”。有谁能帮我创建一个对象并导航到 Chrome。

答案1

Google Chrome 不是 .NET 应用程序,因此您无法创建 VBA 对象。

答案2

子测试544()

将 chromePath 设置为字符串

chromePath = """C:\Program Files (x86)\Google\Chrome\Application\chrome.exe""" Shell (chromePath & "https://www.oanda.com/currency/converter/“)

子目录结束

相关内容