Macro que llena formulario de internet
Publicado por Luis Enrique (6 intervenciones) el 19/09/2018 01:06:36
hola amigos estoy haciendo una macro que llena un formulario sin embargo no logro hacer que coloque el valor de la consulta y el programa termina
dejo el código por si me pueden ayudar
dejo el código por si me pueden ayudar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Sub dni()
Dim IE As Object
Dim n As Integer
Dim oInput As Object
Dim SearchFor As String
Dim URL As String
SearchFor = "72478297"
URL = "https://consultamiembrodemesa.onpe.gob.pe/"
Set IE = CreateObject("InternetExplorer.Application")
IE.Navigate URL
IE.Visible = True
' Wait for IE to finish.
While IE.Busy Or IE.ReadyState <> 4: DoEvents: Wend
' Wait for the web page to be rendered.
With CreateObject("Shell.Application")
DoEvents
For n = 1 To .Windows.Count
If .Windows(n - 1) = "Internet Explorer" Then Exit For
Next n
End With
Set oInput = IE.Document.getElementById("DNI")
oInput.Value = SearchFor
End Sub
Valora esta pregunta
0