How To Upload File Using Python+selenium?
I need to upload file. I have 'Choose file' form. I click 'Choose file' button, select file in window, after that uploading starts. Here is form.
Solution 2:
Try setting full path:
driver.find_element_by_id("fileUploadField").send_keys(os.getcwd()+"/1.m4")
Post a Comment for "How To Upload File Using Python+selenium?"