标签: python selenium-webdriver
通常使用selenium上传文件必须找到上传文本框,但在此网站中:
https://www.ofoct.com/audio-converter/audio-to-text.html
没有用于上传的输入,如何在此网站上传含有selenium的文件?我在Windows上使用python和gecko驱动程序。
答案 0 :(得分:0)
为什么您认为文件上传没有输入?
这是:
和
driver.find_element_by_xpath("//input[@type='file']").send_keys("/path/to/file.mp3")
对我来说很好用