I'm developing a process automation system, where my client's vendor site has a part that needs to upload files. All automation is already developed, only missing this part. I have already researched in several forums, and everyone presents the solution using SendKeys. This does not work in my case, there were more instances of the robot running on the same machine, and also humans using that computer.
I found this project on the codeproject link . But it also did not work for me.
Summarizing
Upload file to a input type file
component through the web browser, without using sendkeys.
Example Html
<form id="frmArq" name="frmArq" method="post" enctype="multipart/form-data" action="./outage_upload.php" target="upload_target">
<input type="file" id="arqEvid" name="arqEvid" value="0">
<input type="hidden" id="id_ticket" name="id_ticket" value="7539371">
<input type="submit" value="Enviar"></form>