使用selenium上传文件

时间:2018-03-24 15:14:50

标签: python selenium-webdriver

通常使用selenium上传文件必须找到上传文本框,但在此网站中:

https://www.ofoct.com/audio-converter/audio-to-text.html

没有用于上传的输入,如何在此网站上传含有selenium的文件?我在Windows上使用python和gecko驱动程序。

1 个答案:

答案 0 :(得分:0)

为什么您认为文件上传没有输入?

这是: enter image description here

driver.find_element_by_xpath("//input[@type='file']").send_keys("/path/to/file.mp3") 

对我来说很好用