python爬虫之selenium--拖拽页面元素

前言

如何通过selenium实现拖拽页面元素,接下来直接上代码,如下:

代码

from selenium import webdriver
import unittest
from selenium.webdriver import ActionChains
import time


class Test_dragpage(unittest.TestCase):
    def test_dragpageElement(self):
        url = 'http://jqueryui.com/resources/demos/draggable/scroll.html'
        self.driver = webdriver.Chrome()
        self.driver.get(url)
        # 获取第一,二,三能拖拽的元素
        drag1 = self.driver.find_element_by_id('draggable')
        drag2 = self.driver.find_element_by_id('draggable2')
        drag3 = self.driver.find_element_by_id('draggable3')

        # 创建一个新的ActionChains,将webdriver实例对driver作为参数值传入,然后通过WenDriver实例执行用户动作

        action_chains = ActionChains(self.driver)
        # 将页面上的第一个能被拖拽的元素拖拽到第二个元素位置
        action_chains.drag_and_drop(drag1, drag2).perform()

        # 将页面上的第三个能拖拽的元素,向右下拖动10个像素,共拖动5次
        for i in range(5):
            action_chains.drag_and_drop_by_offset(drag3, 10, 10).perform()
            time.sleep(2)


test1 = Test_dragpage()
test1.test_dragpageElement()

python爬虫之selenium--拖拽页面元素

python爬虫之selenium-介绍和安装

python爬虫之selenium-浏览器操作方法

python爬虫之selenium-元素的定位

python爬虫之selenium--Xpath定位

python爬虫之selenium--iframe

python爬虫之selenium--单选下拉列表

python爬虫之selenium--鼠标操作

python爬虫之selenium--键盘操作

python爬虫之selenium--等待的三种方式

python爬虫之selenium--多窗口操作

python爬虫之selenium--操作JS弹框

python爬虫之selenium--上传文件

python爬虫之selenium--浏览器窗口截图

python爬虫之selenium--加载浏览器配置

python爬虫之selenium--表格和复选框的定位

python爬虫之selenium--获取HTML源码断言和URL地址

python爬虫之selenium--设置浏览器的位置和高度宽度

python爬虫之selenium--页面元素相关的操作

python爬虫之selenium--浏览器滚动条操作

python爬虫之selenium--拖拽页面元素

python爬虫之selenium--页面元素是否可见和可操作

python爬虫之selenium--高亮显示正在操作的元素

python爬虫之selenium--更改标签的属性值

python爬虫之selenium--单选框和复选框的操作

python爬虫之selenium--cookie操作

python爬虫之selenium--记录日志信息