selenium ActionChains ,select

Posted liushuxian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium ActionChains ,select相关的知识,希望对你有一定的参考价值。

ActionChains  鼠标悬浮、拖拽操作

from selenium.webdriver.common.action_chains import ActionChains
driver=webdriver.Chrome()
action = ActionChains(driver) element=driver.find_element_by_css_selector(#id) ele=driver.find_element_by_css_selector(.cls) action.move_to_element(element).click(ele).perform() #鼠标移动到这个element元素上,然后鼠标移到到ele元素上并点击,perform 执行前面两步的操作 action.drag_and_drop(element,ele).perform() #拖拽 将element拖拽到ele元素上

 

 

------------------------------------select 

from selenium.webdriver.support.select import Select
driver=webdriver.Chrome()
ele=driver.find_element_by_css_selector(#id)
Select(ele).select_by_value(4) #选中select标签下的option标签value=4
Select(ele).select_by_index(2)  #选中select标签下的第四个option
Select(ele).select_by_visible_text(上海) #通过选项的文本内容定位
Select(ele).all_selected_options #返回所有选中的optionelement 对象
Select(ele).deselect_by_value(4) #通过value取消选中的option
Select(ele).deselect_all()   #取消所有选中
Select(ele).deselect_by_index(3)  #通过index取消选中
Select(ele).deselect_by_visible_text(上海) #通过文本内容取消选中

 

以上是关于selenium ActionChains ,select的主要内容,如果未能解决你的问题,请参考以下文章

python selenium鼠标键盘操作(ActionChains)

Python selenium ActionChains 基本操作

selenium ActionChains ,select

selenium+python自动化93-鼠标事件(ActionChains)源码详解

selenium+python自动化94-行为事件(ActionChains)源码详解

Selenium----ActionChains