DougExtra21
Programmer
Hi,
I am creating a routine for uploading files to a website, but after clicking a specific button that opens a window to choose a file the code is "paused" and I can't proceed.
Sorry for any word errors, I'm using Google Translate
can you help me?
I am creating a routine for uploading files to a website, but after clicking a specific button that opens a window to choose a file the code is "paused" and I can't proceed.
Sorry for any word errors, I'm using Google Translate
Code:
Dim IE as Object
Set IE = CreateObject("InternetExplorer.application")
IE.Document.all.Item("selectTransType0").Item(2).Selected = True
IE.Document.querySelector("img[src='images/continue_button.gif']").Click
Do Until IE.ReadyState = READYSTATE_COMPLETE
DoEvents
Loop
IE.Document.getElementById("attachment0").Click
'Any code placed from here is locked
'I didn't find any code to proceed from here
can you help me?