selenium.鼠标模拟(ActionChains)

鼠标模拟

webdriver模块中的鼠标模拟方法:

clear()        #清楚输入框的内容
send_keys(‘内容‘)  #在文本框内输入内容
click()        #点击按钮
submit()        #表单的提交

ActionChains模块中的鼠标模拟方法:

click(on_element=None)    #单击鼠标左键

click_and_hold(on_element=None)    #点击鼠标左键,按住不放

context_click(on_element=None) #点击鼠标右键

double_click(on_element=None) #双击鼠标左键

drag_and_drop(source, target) #拖拽到某个元素然后松开

drag_and_drop_by_offset(source, xoffset, yoffset) #拖拽到某个坐标然后松开

move_by_offset(xoffset, yoffset) #鼠标移动到距离当前位置(x,y)

move_to_element(to_element) #鼠标移动到某个元素

move_to_element_with_offset(to_element, xoffset, yoffset) #将鼠标移动到距某个元素多少距离的位置

release(on_element=None) #在某个元素位置松开鼠标左键

perform() #执行链中的所有动作

ActionChains的两种写法:

#首先导入模块
from slenium.webdriver.common.action_chains import ActionChins

#链条式方法
searchElement = driver.find_element_by_id(‘sb_form_q‘).send_keys(‘selenium‘)
searchButtonElement = driver.find_element_by_id(‘sb_form_go‘)
ActionChains(driver).click(searchButtonElement).perform()

#分布式方法
searchElement = driver.find_element_by_id(‘sb_form_q‘).send_keys(‘selenium‘)
searchButtonElement = driver.find_element_by_id(‘sb_form_go‘)
ActionChainsDriver = ActionChains(driver).click(searchButtonElement)
ActionChainsDriver.perform()

以12306主页做一个练习,效果如gif

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

get_12306 = webdriver.Firefox()
get_12306.get(‘https://www.12306.cn/index/index.html‘)

g_href = get_12306.find_element_by_xpath(‘//*[@id="J-index"]/a‘)
Action = ActionChains(get_12306)

for x in range(9):
    x = x * 145
    print(x)
    Action.move_to_element_with_offset(g_href, x, 0).perform()
    sleep(0.5)

sleep(2)

get_12306.quit()

原文地址:https://www.cnblogs.com/youngleesin/p/10449356.html

时间: 2024-11-09 17:03:45

selenium.鼠标模拟(ActionChains)的相关文章

selenium鼠标键盘事件(转)

概念 在使用 Selenium WebDriver 做自动化测试的时候,会经常模拟鼠标和键盘的一些行为.比如使用鼠标单击.双击.右击.拖拽等动作:或者键盘输入.快捷键使用.组合键使用等模拟键盘的操作.在 WebDeriver 中,有一个专门的类来负责实现这些测试场景,那就是 Actions 类,在使用该类的过程中会配合使用到 Keys 枚举以及 Mouse. Keyboard.CompositeAction 等类. 其次,在实际测试过程中,可能会遇到某些按键没办法使用 Actions.Keys

selenium 12306模拟登陆

代码应用场景 :基于第三方打码网站模拟登陆12306 验证码识别 基于第三方平台超级鹰识别 超级鹰官网:http://www.chaojiying.com/user/ 超级鹰使用流程: 注册 登陆(用户中心)充值 创建一个软件:软件ID->生成一个软件ID(901977) 下载实例代码->开发文档->python 1. 重新封装在打码平台下载到的python代码 #!/usr/bin/env python # coding:utf-8 import requests from hashl

键盘鼠标模拟全知道

http://www.cnblogs.com/bjxsky/p/3656076.html 本文目录如下 一.基于windows 消息机制的鼠标键盘模拟  (一).应用程序级模拟  (二).系统级模拟         1. 用API函数keybd_event 模拟键盘事件         2. SendInput函数模拟全局键盘鼠标事件         3.用全局钩子模拟键盘消息 二.驱动级模拟 ***************************************************

鼠标模拟点击a标签

今天写程序遇到的,想要用鼠标模拟点击a标签 html代码如下: <a id="jump"></a> js代码如下: var page = ....; $('#jump').attr('href', '?page='+page).click(); 执行结果为a标签的href属性添加成功,但就是无法点击跳转... 后查询结果说要在里面加元素,故将html改成: <a id="jump"><span id="click&

python selenium鼠标键盘操作(ActionChains)

用selenium做自动化,有时候会遇到需要模拟鼠标操作才能进行的情况,比如单击.双击.点击鼠标右键.拖拽等等.而selenium给我们提供了一个类来处理这类事件--ActionChains selenium.webdriver.common.action_chains.ActionChains(driver) 这个类基本能够满足我们所有对鼠标操作的需求. 1.ActionChains基本用法 首先需要了解ActionChains的执行原理,当你调用ActionChains的方法时,不会立即执行

selenium webdriver模拟鼠标键盘操作

在测试使用Selenium webdriver测试WEB系统的时候,用到了模拟鼠标.键盘的一些输入操作. 1.鼠标的左键点击.双击.拖拽.右键点击等: 2.键盘的回车.回退.空格.ctrl.alt.shift等: 在webdriver中,有专门的一个类,是用来进行鼠标.键盘的模拟操作的,那就是Actions类,该类使用时,又会涉及到Keyboard.Mouse.CompositeAction(复合动作),先对Mouse的方法做简单罗列,然后再用代码说明: 1.鼠标左键点击: Actions ac

java+selenium+new——模拟鼠标右键操作——action类

package rjcs; import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.interactions.Actions; public class a { public static voi

java+selenium+new——模拟鼠标悬浮操作——action类

package rjcs; import java.util.*; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.interactions.Actions; import org.openqa.selenium.support.ui.Select; public class xinkaishi { public

自动化测试基础篇--Selenium鼠标键盘事件

前面几篇文章我们学习了怎么定位元素,同时通过实例也展示了怎么切换到iframe,怎么输入用户名和密码,怎么点击登录按钮,首先我们先回顾一下元素的基本操作. 1.点击(鼠标左键)页面按钮:click() 2.请空输入框:clear() 3.输入字符串:send_keys() 4.提交表单:submit() 今天这篇文章着重讲一下键盘和鼠标的模拟事件. 一.鼠标事件 1.首先模拟鼠标的操作需要先导入鼠标模块: from selenium.webdriver.common.action_chains