IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> 登录滑块处理 -> 正文阅读

[Python知识库]登录滑块处理

coding = utf-8

Date: 2021/5/12 16:33

import time

from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from AutoWebUi.PageLocators.login_pagelocators import LoginPageLocators as LOC
from selenium import webdriver
from selenium.webdriver import ActionChains
from selenium.common.exceptions import StaleElementReferenceException
from AutoWebUi.Common.basepage import BasePage

class LoginPage(BasePage):

#元素定位--通过find_element_by_xpath的底层方法,find_element传入元组(方法,值),使用时find_element(*self.xx),*解包
#以下元素存入PageLocators.login_pagelocators中
# name_text = (By.XPATH,'//*[@id="u"]')
# pwd_text = (By.XPATH,'//*[@id="p"]')
# login_button = (By.XPATH,'//*[@id="login_button"]')
# remberuser_check = (By.XPATH,'//*[@id="p_low_login_enable"]')
# login_tips=(By.XPATH,'//div[@class="loginTips"]')

#登录操作
def login(self,username,password,rember_user=False):
    # 以下元素存入PageLocators.login_pagelocators中
    # name_text='//*[@id="u"]'
    # pwd_text='//*[@id="p"]'
    # login_button='//*[@id="login_button"]'
    # remberuser_check='//*[@id="p_low_login_enable"]'
    #切换iframe
    #登陆页面
    doc ="登录页面_登录功能"
    self.driver.switch_to.frame("login_frame")
    time.sleep(0.5)
    self.wait_eleVisible(LOC.name_text,doc=doc)
    # WebDriverWait(self.driver,30).until(EC.visibility_of_element_located(LOC.name_text))
    self.input_text(LOC.name_text,username,doc=doc)
    # self.driver.find_element(*LOC.name_text).send_keys(username)
    self.input_text(LOC.pwd_text,password,doc=doc)
    # self.driver.find_element(*LOC.pwd_text).send_keys(password)
    #判断rember_user的值,决定是否勾选
    if rember_user==False:
        pass
    else:
        self.click_element(LOC.remberuser_check,doc=doc)
    self.click_element(LOC.login_button,doc=doc)
    time.sleep(2)
    #QQ邮箱登录图片滑块处理
    try:
        #进入iframe
        self.driver.switch_to.frame('tcaptcha_iframe')          #tcaptcha_iframe
        time.sleep(1)
        WebDriverWait(self.driver,10).until(EC.presence_of_element_located(LOC.login_slider))
        start_position=self.driver.find_element_by_id('tcaptcha_drag_button')       #tcaptcha_drag_button
        time.sleep(2)
        action=ActionChains(self.driver)
        action.click_and_hold(start_position).perform()    #鼠标移动到滑块初始位置,并保持点击不释放
        action.reset_actions()                              #清除已经存储操作
        #向水平向右滑块120
        action.move_by_offset(xoffset=120,yoffset=0).perform()
        time.sleep(1)
        #再每次移动距离+10
        try:
            for i in range(10):
                action.move_by_offset(xoffset=10, yoffset=0).perform()
                action.reset_actions()
                time.sleep(1)
        except StaleElementReferenceException:
            time.sleep(5)
        # time.sleep(10)
        # doc = '首页_个人账号元素检查'
        # result=self.isExist_ele(LOC.user_msg,doc=doc)
        # print("{}查询结果{}".format(doc, self.isExist_ele(LOC.user_msg, doc=doc)))
        # return result

    except:
        pass

#注册入口
def register_enter(self):
    pass

#获取错误信息提示
def get_errorMsg_from_loginArea(self):
    #登陆页面
    doc ="登录页面_登录区域的错误提示"
    # 切换iframe
    self.driver.switch_to.frame("login_frame")
    self.wait_eleVisible(LOC.login_tips,doc=doc)
    # WebDriverWait(self.driver,10).until(EC.presence_of_element_located((By.XPATH,'//div[@class="loginTips"]')))
    return self.get_text(LOC.login_tips,doc=doc)
    # return self.driver.find_element_by_xpath('//div[@class="loginTips"]').text
  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-02-24 15:14:36  更:2022-02-24 15:17:08 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 0:22:17-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码