Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/qt/7.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
通过vba在网页中单击“提交”按钮 subj() 模糊的物体 作为HTMLDocument的Dim doa 将HTMLdoc设置为HTMLDocument 将按钮变暗为HTMLInputButtonElement 作为整数的Dim i '设置HTMLdoc=.document 设置ie=CreateObject(“internetexplorer.application”) 可见=真实 即“导航”https://ebfpm.tsgwn.co.in/Prksoortal/login.jsp" 忙着干吧 Application.Wait DateAdd(“s”,1,Now) 环 '设置doa=ie.document ie.document.getelementbyid(“用户名”).Value=“egh125” ie.document.getelementbyid(“密码”).Value=“**” 端接头 '在网页中,我尝试单击的“继续”按钮代码是_Html_Excel_Vba_Web_Continue - Fatal编程技术网

通过vba在网页中单击“提交”按钮 subj() 模糊的物体 作为HTMLDocument的Dim doa 将HTMLdoc设置为HTMLDocument 将按钮变暗为HTMLInputButtonElement 作为整数的Dim i '设置HTMLdoc=.document 设置ie=CreateObject(“internetexplorer.application”) 可见=真实 即“导航”https://ebfpm.tsgwn.co.in/Prksoortal/login.jsp" 忙着干吧 Application.Wait DateAdd(“s”,1,Now) 环 '设置doa=ie.document ie.document.getelementbyid(“用户名”).Value=“egh125” ie.document.getelementbyid(“密码”).Value=“**” 端接头 '在网页中,我尝试单击的“继续”按钮代码是

通过vba在网页中单击“提交”按钮 subj() 模糊的物体 作为HTMLDocument的Dim doa 将HTMLdoc设置为HTMLDocument 将按钮变暗为HTMLInputButtonElement 作为整数的Dim i '设置HTMLdoc=.document 设置ie=CreateObject(“internetexplorer.application”) 可见=真实 即“导航”https://ebfpm.tsgwn.co.in/Prksoortal/login.jsp" 忙着干吧 Application.Wait DateAdd(“s”,1,Now) 环 '设置doa=ie.document ie.document.getelementbyid(“用户名”).Value=“egh125” ie.document.getelementbyid(“密码”).Value=“**” 端接头 '在网页中,我尝试单击的“继续”按钮代码是,html,excel,vba,web,continue,Html,Excel,Vba,Web,Continue,我在这个网站上尝试了许多不同的代码来让我的VBA点击网页上的按钮,但每次都失败了, 用户名和密码已使用此代码成功填写,但我不知道如何单击“继续”按钮,这是使用的代码1。检查页面是否在IE中工作。越来越多的页面不工作。2.检查用户名和密码的输入字段是否包含HTML事件3。最后,它应该是一个简单的。单击链接上的“按钮确定” Sub j() Dim ie As Object Dim doa As HTMLDocument Dim HTMLdoc As HTMLDocument Dim button A

我在这个网站上尝试了许多不同的代码来让我的VBA点击网页上的按钮,但每次都失败了, 用户名和密码已使用此代码成功填写,但我不知道如何单击“继续”按钮,这是使用的代码

1。检查页面是否在IE中工作。越来越多的页面不工作。2.检查用户名和密码的输入字段是否包含HTML事件3。最后,它应该是一个简单的
。单击链接上的
“按钮确定”
Sub j()
Dim ie As Object
Dim doa As HTMLDocument
Dim HTMLdoc As HTMLDocument
Dim button As HTMLInputButtonElement
Dim i As Integer
'Set HTMLdoc = .document
Set ie = CreateObject("internetexplorer.application")

ie.Visible = True
ie.navigate "https://ebfpm.tsgwn.co.in/Prksoortal/login.jsp"

Do While ie.busy
 Application.Wait DateAdd("s", 1, Now)
Loop
'Set doa = ie.document
ie.document.getelementbyid("username").Value = "egh125"
ie.document.getelementbyid("password").Value = "**"

End Sub

'in web page the "continue" button code which i try to click is

<a class="button ok" tabindex="0" href="javascript:submitForm();">
<span class="submit-text">Continue</span>
<img class="arrow" src="img/arrow.png" alt="">
</a>