selenium webdriver upload file

后端 未结 5 1259
有刺的猬
有刺的猬 2020-12-01 21:47

I am new to selenium, I have a script that uploads a file to a server.

In the ide version sort of speak it uploads the file, but when I export test case as python 2

5条回答
  •  余生分开走
    2020-12-01 22:01

    Did you tried this single piece of code:

    driver.find_element_by_css_selector("input[type=\"file\"]").send_keys("C:\\Documents and Settings\\pcname\\Desktop\\ffdlt\\test.jpeg")
    

提交回复
热议问题