来啦,已经跑了好几圈啦....
Canvas is not supported in your browser.

selenium上传文件

browser.find_element_by_id("schword").send_keys(keyword)

 

send_keys如果传中文,应写为 keyword = u"你的关键词",如果是从文件读取,通过这个方法读文件时,file = codecs.open('keywords.txt',   'r',  'utf-8')        keywords = file.readlines(),读出的中文list中第一个字符前有乱码,要去掉,第二个开始以后的字符有后缀 \r\n,也要去掉,然后传入send_keys就正常了。

 

 

webDriver

@driver.find_element(:id => "upload").send_keys "/path/to/file"

posted @ 2019-05-08 15:18  fangpengcheng_方鹏程  阅读(169)  评论(0编辑  收藏  举报