我在 localhost 中有以下 HTML:
<html><body><h1>test</h1>
<input type="file" id="file" />
</body></html>
此代码适用于 Firefox webdriver,但不使用 Chrome 之一:
dr = webdriver.Chrome()
dr.get('http://localhost')
input = dr.find_element_by_id("file")
input.send_keys("/tmp/var/test.zip")
我正在使用硒 2.25