真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

selenium學(xué)習(xí):鼠標(biāo)事件

在WebDriver中鼠標(biāo)操作的方法封裝在ActionChains類中

創(chuàng)新互聯(lián)建站專注于企業(yè)成都營銷網(wǎng)站建設(shè)、網(wǎng)站重做改版、白銀區(qū)網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、html5、購物商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)公司、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為白銀區(qū)等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

ActionChains類提供的常用方法:

perform():執(zhí)行所有ActionChains中的存儲(chǔ)行為

contextclick() 右擊

double_click() 雙擊

drag_and_drop() 拖動(dòng)

move_to_element() 鼠標(biāo)懸停

  1. 鼠標(biāo)右擊事件

  下面代碼中:from selenium.driver import ActionChains  導(dǎo)入提供鼠標(biāo)操作的ActionChains類

   ActionChains(driver)調(diào)用ActionChains類,將瀏覽器驅(qū)動(dòng)driver作為參數(shù)傳入

   context_click(right_click)方法用于模擬鼠標(biāo)右鍵操作,在調(diào)用時(shí)需要指定元素定位

   perform()執(zhí)行所有ActionChains中的存儲(chǔ)行為,對(duì)整個(gè)操作的提交動(dòng)作。

2.鼠標(biāo)懸停
  move_to_element()方法可以模擬鼠標(biāo)懸停的動(dòng)作
3.鼠標(biāo)雙擊操作
使用double_click函數(shù)
4.鼠標(biāo)拖放操作
drag_and_drop(source,target)在源元素上按住鼠標(biāo)左鍵,然互移動(dòng)到目標(biāo)機(jī)上釋放
source:鼠標(biāo)拖動(dòng)的源元素
target鼠標(biāo)釋放的目標(biāo)元素  

from selenium import webdriver
from time import *
from selenium.webdriver.common.action_chains import ActionChains

driver = webdriver.Chrome()

url = "https://www.baidu.com"
print('new access %s' %(url))
driver.get(url)
#定位元素


right_click= driver.find_element_by_xpath('//*[@id="u1"]/a[8]')
#鼠標(biāo)右擊
ActionChains(driver).context_click(right_click).perform()

#鼠標(biāo)懸停
#ActionChains(driver).move_to_element(right_click).perform()

#鼠標(biāo)雙擊
ActionChains(driver).double_click(right_click).perform()
sleep(3)


driver.quit()

當(dāng)前標(biāo)題:selenium學(xué)習(xí):鼠標(biāo)事件
網(wǎng)頁地址:http://weahome.cn/article/gepech.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部