从 IE 升级到 EDGE
Upgrading From IE to EDGE
我需要 VBA Edge 的代码翻译。
我在 Window10/Excel 16 环境中。当我从网站 抓取 数据时,我一直在使用 Internet Explorer (IE)。
现在,我需要升级到 Microsoft Edge。我不得不翻译一些代码,我发现我需要一些帮助。
我曾经使用“IE.navigate”来调用 URL https://www.azblue.com/individualsandfamilies/。例如:
IE.navigate "https://www.azblue.com/individualsandfamilies/"
但是,我不知道如何将这些其他代码行与 Edge 一起使用。这是我经常使用并且需要了解 Edge 语法翻译的 3 行代码(脱节):
IE.document.getElementById("lockedcontent_0_maincolumn_2_twocolumn2fb4d204091d44aa08196ef423877fd9f_0_ToolbarUsernameControl").Focus
IE.document.getElementById("lockedcontent_0_maincolumn_2_twocolumn2fb4d204091d44aa08196ef423877fd9f_0_ToolbarUsernameControl").Value = "MyUserName"
IE.document.Focus
当然,非常感谢任何帮助
谢谢!
Microsoft Edge 浏览器不支持 VBA 中使用的 COM 自动化接口。如果你想自动化 Microsoft Edge,你应该使用 WebDriver.
To get started using WebDriver, you will need to download a testing framework of your choice along with an appropriate language binding and the MicrosoftWebDriver server.
我们通常使用 Selenium,您可以在 this page. At the same time, you could download Microsof Edge WebDriver in this page 下载语言绑定。
参考link:
我需要 VBA Edge 的代码翻译。 我在 Window10/Excel 16 环境中。当我从网站 抓取 数据时,我一直在使用 Internet Explorer (IE)。 现在,我需要升级到 Microsoft Edge。我不得不翻译一些代码,我发现我需要一些帮助。
我曾经使用“IE.navigate”来调用 URL https://www.azblue.com/individualsandfamilies/。例如:
IE.navigate "https://www.azblue.com/individualsandfamilies/"
但是,我不知道如何将这些其他代码行与 Edge 一起使用。这是我经常使用并且需要了解 Edge 语法翻译的 3 行代码(脱节):
IE.document.getElementById("lockedcontent_0_maincolumn_2_twocolumn2fb4d204091d44aa08196ef423877fd9f_0_ToolbarUsernameControl").Focus
IE.document.getElementById("lockedcontent_0_maincolumn_2_twocolumn2fb4d204091d44aa08196ef423877fd9f_0_ToolbarUsernameControl").Value = "MyUserName"
IE.document.Focus
当然,非常感谢任何帮助 谢谢!
Microsoft Edge 浏览器不支持 VBA 中使用的 COM 自动化接口。如果你想自动化 Microsoft Edge,你应该使用 WebDriver.
To get started using WebDriver, you will need to download a testing framework of your choice along with an appropriate language binding and the MicrosoftWebDriver server.
我们通常使用 Selenium,您可以在 this page. At the same time, you could download Microsof Edge WebDriver in this page 下载语言绑定。
参考link: