我正嘗試使用硒web驅動程序上傳文件。我得到文件上傳對話框在MacOS和Windows中打開,之後沒有任何反應。想知道爲什麼硒不通過上傳對話框打開文件?無法在http://www.dropzonejs.com上使用python selenium webdriver上傳文件
webdriver的命令,我使用:
wd.get("http://www.dropzonejs.com/")
wd.find_element_by_css_selector("div.dz-message").click()
wd.find_element_by_css_selector("input.dz-hidden-input").click()
elm = wd.find_element_by_xpath("//input[@type='file']")
elm.send_keys("/Users/bg/Downloads/YOURFILE.PDF")
elm.submit()
[硒的webdriver上傳文件(可能的重複http://stackoverflow.com/questions/18823139/selenium -webdriver-upload-file) –