码迷,mamicode.com
首页 > 编程语言 > 详细

Python-selenium进阶操作

时间:2015-09-05 19:30:48      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:python   selenium   

一. 三类窗口切换方法

1.alert操作

方法一:

from selenium import webdriver
from selenium.webdriver.common.alert import Alert
driver=webdriver.Chrome()
driver.execute_script(‘alert("Are you ready?")‘)
Alert(driver).accept()
#Alert(driver).dismiss()

方法二:

from selenium import webdriver
driver=webdriver.Chrome()
driver.execute_script(‘alert("Are you ready?")‘)
driver.switch_to_alert().accept()
#driver.switch_to_alert().dismiss()


2.window切换

<a href="a.html" target="windowName">

driver.switch_to_window("windowName")


for handle in driver.window_handles:

driver.switch_to_window(handle)


3.frame切换

driver.switch_to_frame("frameName")

driver.switch_to_default_content()


二. ActionChains

ActionChains常用api列表

click() 点击

click_and_hold() 点击后不放手

context_click() 右键

double_click() 双击

drag_and_drop(element,target) 把某个元素从一个位置拖拽到目标地址

move_to_element(to_element) 移动到某个元素

key_down(value) keys.CONTROL

key_up(value)

perform()

release() 点击后释放

send_keys()


示例:百度首页点击更多产品中的音乐按钮

from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
driver=webdriver.Chrome()
driver.get("http://www.baidu.com")
chain=ActionChains(driver)
ele1=driver.find_element_by_xpath(‘//*[@id="u1"]/a[8]‘) #更多产品按钮的xpath
chain.move_to_element(ele1) #移动到更多按钮
ele2=driver.find_element_by_xpath(‘//*[@id="head"]/div/div[4]/div/div[2]/div[1]/div/a[3]‘) #音乐按钮的xpath
chain.move_to_element(ele2).click().perform() #移动到音乐按钮并点击执行


三. 文件上传

1.对于谷歌浏览器可以利用send_keys输入文件路径

2.对于IE和火狐浏览器的windows窗口可以使用autoit(生成一个exe文件,然后os.system(u‘D:/python/auto.exe))


本文出自 “今日的努力,明日的成功!” 博客,请务必保留此出处http://zhzhgo.blog.51cto.com/10497096/1691550

Python-selenium进阶操作

标签:python   selenium   

原文地址:http://zhzhgo.blog.51cto.com/10497096/1691550

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