66
votes

How to upload a picture on a web application with the selenium testing tool? I am using python.

I tried many things, but nothing worked.

14
I posted an [answer here using python][1]. [1]: stackoverflow.com/a/11872608/471376 - JamesThomasMoon

14 Answers

6
votes

Upload input control opens a native dialog (it is done by browser) so clicking on the control or browse button via Selenium will just pop the dialog and the test will hang.

The workaround is to set the value of the upload input via JavaScript (in Java it is done via JavascriptExecutor) and then submit the form.

See this question for sample in C#, I am sure there's also a way to call JavaScript in Python but I never used Selenium Python bindings

172
votes

What I'm doing is this (make sure drv is an instance of webdriver):

drv.find_element_by_id("IdOfInputTypeFile").send_keys(os.getcwd()+"/image.png")

and then find your submit button and click it.

13
votes

A very easy way to control components like windows file selector (or just your OS in general) is by using pyautogui. You can install pyautogui through pip

import pyautogui
... # set the webdriver etc.
...
...
element_present = EC.presence_of_element_located((By.XPATH, "//button[@title='Open file selector']"))  # Example xpath

WebDriverWait(self.driver, 10).until(element_present).click() # This opens the windows file selector

pyautogui.write('C:/path_to_file') 
pyautogui.press('enter')
9
votes

I added an answer for anyone looking to use deal with the annoying msofiledialogs. This is working off of saravanan's proposed solution, but more fleshed out for Python.

I had a similar problem with a script I'm working on for a company on the side. I'm attempting to upload documents for a company's clients, but due to the way their site worked, I could not utilize send_keys to directly send the path, so I had to rely on msofiledialog.

  1. You only need to install AutoIt https://pypi.python.org/pypi/PyAutoIt/0.3 or just "pip install -U pyautoit" through the cmd screen

  2. type "import autoit" on your script page

  3. Type the following before the file dialog pops up in your script:

    autoit.win_active("Open") autoit.control_send("Open","Edit1",r"C:\Users\uu\Desktop\TestUpload.txt") autoit.control_send("Open","Edit1","{ENTER}")

It will look for the open file dialog window and fill it out and press enter. "Open" is the title of my file dialog screen. Put the title of yours in place of "Open". There are more creative ways to utilize AutoIt's functions, but this is an easy, straightforward way for beginners.

Edit: DO NOT. DO NOT use control_send on most things if you can avoid it. It has a well-known issue of sending erroneous text. In my case, the colon in my file path was being turned into a semi colon. If you need to send input keys, it should be fine, however if you need to send text, use control_set_text. It has the same syntax.

autoit.control_set_text("Open","Edit1",r"C:\Users\uu\Desktop\TestUpload.txt")
7
votes

All these approach wont work with modern image uploaders in olx !!! Alternative approach (only for windows )

1. Automation of windows can be done using Autoit 
2. Install Autoit and SciTe Script editor 
3. Autoit code :(imageupload.au3)

WinActivate("File Upload");  for chrome use "open" that is the name of the window that pops 
send("D:\images\image1.png");  path of the file
Send("{ENTER}")

4. compile it to get an .exe file(imageupload.exe)
5. Now from python call the .exe file like

import os
import os.system('C:\images\imageupload.exe') #path of the .exe file
6
votes

I am using fine-uploader, running selenium tests with pytest and this worked for me:

elm = driver.find_element_by_xpath("//input[@type='file']")
elm.send_keys(os.getcwd() + "/tests/sample_files/Figure1.tif")

No form submission or Enter key is needed in my case.

3
votes
import win32com.client

shell = win32com.client.Dispatch("WScript.Shell")   
shell.Sendkeys("C:\text.txt")  
shell.Sendkeys("~")

Will resolve the issue

1
votes

full code to achieve file upload using autoit tool. u can just copy paste this and u can run, it will work since it is a acti-time demo.

from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as ec
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
import time
import os

def fileUploading():

    driver = webdriver.Firefox()
    driver.implicitly_wait(20)
    wait = WebDriverWait(driver, 10)
    driver.get("https://demo.actitime.com/login.do");
    driver.find_element(By.ID,"username").send_keys("admin")
    driver.find_element(By.NAME, "pwd").send_keys("manager")
    driver.find_element(By.XPATH, "//div[.='Login ']").click()
    wait.until(ec.element_to_be_clickable((By.XPATH, "(//div[@class='popup_menu_icon'])[3]")))
    driver.find_element(By.XPATH, "(//div[@class='popup_menu_icon'])[3]").click()
    wait.until(ec.element_to_be_clickable((By.XPATH, "//a[contains(text(),'Contact actiTIME Support')]")))
    driver.find_element(By.XPATH, "//a[contains(text(),'Contact actiTIME Support')]").click()
    wait.until(ec.element_to_be_clickable((By.XPATH,"//div[@class='dz-default dz-message']")))
    driver.find_element(By.XPATH,"//div[@class='dz-default dz-message']").click()
    os.system("C:\\Users\\mallikar\\Desktop\\screenUpload.exe")
    time.sleep(2000)

fileUploading()

below is the content of autoit code:

WinWaitActive("File Upload")
Send("D:\SoftwareTestingMaterial\UploadFile.txt")
Send("{ENTER}")

download autoIt and autoIt SCITE editor tool. once done install autoit and the open the scite editor and paste the above code and save it with .au3 extension and once saved, right click on the file and select complile script(x64), now .exe file is created.

now use the below code:

os.system("C:\\Users\\mallikar\\Desktop\\screenUpload.exe")
1
votes
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
    driver = webdriver.Firefox()
    driver.get("http://www.example.org")
    def upload_file():
        upload_file = driver.find_element_by_id("paste here id of file which 
        is 
        enter code here`shown in html code...")

       upload_file.send_keys("copy the path of file from your pc with name and 
       paste here...")

if toast message is disappeared within seconds you can use Chropath extension in chrome to find its xpath

This is a pure python code.

1
votes

Instead of using control_send, use control_set_text to resolve inconsistencies present in the string sent to the window. See this link for reference: https://www.autoitscript.com/forum/topic/85929-incorrect-string-being-sent-via-controlsend/

import autoit

autoit.win_wait_active("Open")
autoit.control_set_text("Open", "Edit1", imgPath)
autoit.send("{ENTER}")
1
votes

Use PyAutoGui if sendkeys function is not working on buttons.

sample code:

import pyautogui
driver.find_element_by_xpath("Enter Xpath of File upload button").click()
time.sleep(4) #waiting for window popup to open
pyautogui.write(r"C:\Users\AmarKumar\FilesForUploading\image.jpg") #path of File
pyautogui.press('enter')
0
votes

I have used below script format to upload the images. This may help you.

   Imagepath=os.path.abspath('.\\folder1\\subfolder2\file1.jpg')
   driver.find_element_by_id("Id of the element").clear()            
   driver.find_element_by_id("Id of the element").send_keys(Imagepath)

if you do not have ID of the object ,then you can use xpath or css selector accordingly.

0
votes

Using splinter :

browser.attach_file('file_chooser_id',fully_qualified_file_path)

0
votes

Here is the code that i used:

Imagepath = "C:\User\Desktop\image.png" driver.find_element_by_xpath('//html/body/input').send_keys(Imagepath) driver.find_element_by_xpath('//html/body/button').click()

I accept the Answer by karloskar. Note It is not working for FireFox (59). And it is works with Chrome Driver only.