隐藏元素时如何使用send_keys()上传图像?

时间:2019-07-11 21:52:46

标签: python selenium

以下是用于上传图像的HTML。

<input _ngcontent-c23="" accept="image/jpg,image/jpeg,image/png" 
class="image-uploader" multiple="" pattern="'.jpg,.jpeg,.png'" type="file" 
hidden="">

1 个答案:

答案 0 :(得分:1)

只需将普通的send_keys与路径配合使用即可。

driver.find_element_by_xpath("//input[@type='file']").send_keys("Path_of the_file")