当我尝试发送sendkeys命令上传文件时,我收到此错误:
selenium.common.exceptions.InvalidArgumentException:消息:找不到文件:C:/file.abc
在Chrome上它运行得很好,我已经看到旧版本的firefox中的其他用户已经发现这个问题并且已经修复了,但对我来说问题仍然存在。
这是代码:
site = "https://www.sendspace.com/"
driver = webdriver.Firefox()
driver.get(site)
driver.find_element_by_xpath("//input[@type='file']").send_keys('C:/file.abc')