码迷,mamicode.com
首页 > Web开发 > 详细

selenium 上传文件

时间:2018-04-07 18:52:35      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:use   xpath   tps   find   led   com   文件路径   按钮   获取   

#-*-coding:utf-8-*-
from selenium import webdriver
from time import sleep

#前提条件,需要提前登录账户,获取配置文件才能打开随笔的编辑页面
#火狐找到配置文件路径:帮助>故障排除信息>配置文件夹>显示文件夹
#应用场景,主要是做免登录操作
profileDir = "C:\Users\Administrator\AppData\Roaming\Mozilla\Firefox\Profiles\yn80ouvt.default"
profile = webdriver.FirefoxProfile(profileDir)
driver = webdriver.Firefox(profile)

url = "https://i.cnblogs.com/EditPosts.aspx?opt=1"
driver.get(url)

driver.find_element_by_xpath(".//*[@id=‘Editor_Edit_EditorBody_uploadImage‘]").click()
driver.implicitly_wait(20) # 等待元素展示
# 定位所有iframe,取第二个,取框架,然后再选择按钮输入图片文件路径
frame = driver.find_elements_by_tag_name(‘iframe‘)[1]
driver.switch_to.frame(frame)
driver.find_element_by_name(‘file‘).send_keys(r"E:\1.png")
sleep(5)
driver.quit()

selenium 上传文件

标签:use   xpath   tps   find   led   com   文件路径   按钮   获取   

原文地址:https://www.cnblogs.com/tDayUp/p/8733994.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!