Foxtable(狐表)用户栏目专家坐堂 → 求助:模拟网页点击“搜索”操作出错


  共有1990人关注过本帖树形打印复制链接

主题:求助:模拟网页点击“搜索”操作出错

帅哥哟,离线,有人找我吗?
有点青
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:二尾狐 帖子:573 积分:2961 威望:0 精华:0 注册:2016/10/27 14:33:00
  发帖心情 Post By:2016/11/2 18:47:00 [显示全部帖子]

1、web.ScriptErrorsSuppressed = True

 

2、

 

Dim web As System.Windows.Forms.WebBrowser = e.Form.Controls("WebBrowser1").Basecontrol
web.ScriptErrorsSuppressed = True
web.Navigate("http://search.jcrb.com/was5/web/gzwengan.html")
Do Until web.ReadyState = 4
    Application.DoEvents
Loop

Dim inputs = web.Document.GetElementsByTagName("input")
For Each Input As object In Inputs
    If Input.GetAttribute("name") = "imageField"
        Input.InvokeMember("click")
    End If
Next

[此贴子已经被作者于2016/11/2 18:47:26编辑过]

 回到顶部
帅哥哟,离线,有人找我吗?
有点青
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:二尾狐 帖子:573 积分:2961 威望:0 精华:0 注册:2016/10/27 14:33:00
  发帖心情 Post By:2016/11/2 18:52:00 [显示全部帖子]

3、

 

Dim web As System.Windows.Forms.WebBrowser = e.Form.Controls("WebBrowser1").Basecontrol
web.ScriptErrorsSuppressed = True
web.Navigate("http://search.jcrb.com/was5/web/gzwengan.html")
Do Until web.ReadyState = 4
    Application.DoEvents
Loop
For Each archor As object In web.Document.Forms
    archor.SetAttribute("target", "_self")
Next
Dim inputs = web.Document.GetElementsByTagName("input")
For Each Input As object In Inputs
    If Input.GetAttribute("name") = "imageField"
        Input.InvokeMember("click")
    End If
Next


 回到顶部