gpt4 book ai didi

scripting - 在VB脚本中打开一个网页并点击一个按钮

转载 作者:行者123 更新时间:2023-12-04 15:04:59 24 4
gpt4 key购买 nike

我想在 Internet Explorer 中打开一个网页并导航到一个页面,然后使用 单击该页面中的一个按钮.例如

  • 我想打开 IE 并导航到“http://www.gmail.com”,
  • 等待页面加载,
  • 并在用户名和密码文本框中填写用户名和密码,然后使用 VB 脚本点击登录按钮。

这是我唯一能找到的东西(只能在 IE 中打开一个页面):

Set WshShell = WScript.CreateObject("WScript.Shell")
Return = WshShell.Run("iexplore.exe www.gmail.com", 1)

请帮帮我。

最佳答案

类似于:

 Set IE = CreateObject("InternetExplorer.Application") 
Set WshShell = WScript.CreateObject("WScript.Shell")
IE.Navigate "http://mydomain.com/form.asp"
IE.Visible = True
Wscript.Sleep 2000
IE.Document.All.Item("Item1Id").Value = "1000"
IE.Document.All.Item("Item2Id").Value = "1001"
IE.Document.All.Item("Item3Id").Value = "Some Text"
Call IE.Document.Forms(0).Submit()

关于scripting - 在VB脚本中打开一个网页并点击一个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8637899/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com