3
Answers

How to set value for input file type & auto-upload selected file

Aman Ghai

Aman Ghai

13y
5.2k
1
I have a windows form with a webbrowser control in it. I navigate to a web page & there are many text-controls, combobox - I am able to set value for all of them. There is also an input-file control to select a file from local computer & an Upload submit-button to upload the selected file.

I am not able to set the value for file-control. I have tried SendKeys.Sendwait, but that just doesn't work, even when the webbrowser control has the focus.

Can you please help me on this  issue? I need to resolve this urgently. I need the code to select the file automatically by code & then upload it.

Thanks, Amandeep
Answers (3)
0
Karthi Keyan

Karthi Keyan

NA 863 27.8k 7y
@Aman,
   
   Did you got the solution for this issue. Now i am also facing the same issue. i tried sendkeys.Wait, but that's not work.  if you solved then please share your code. 
 
Thanks karthi. 
0
Senthilkumar

Senthilkumar

NA 15.2k 2.4m 13y
Hi,

I do not think you have any control to assign the value from the code level and trigger the upload method automatically. 

If it is web application then we can try in another way. Since it is a windows application.

The web application we can set the value through the javascript.

document.getElementById('fileupload1').value = path;

We can have another button and after assigned it, we can trigger the hidden button event. It will do the upload.


0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 13y
Start by reading my article Introduction to Web Site Scraping.