Python:使用Selenium上传

时间:2012-08-28 21:18:51

标签: python google-chrome selenium

我在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")

我正在使用Selenium 2.25

0 个答案:

没有答案