zoukankan      html  css  js  c++  java
  • python selenium4 模拟点击+拖动+保存验证码 测试对象+以验证码的返回ID保存命名 58同城验证码

    #!/usr/bin/python
    # -*- coding: UTF-8 -*-
    # @Time    : 2019/12/5 17:30
    # @Author  : shenghao/10347899@qq.com
    '''test with selenium's move'''
    from builtins import print
    
    from selenium import webdriver
    from selenium.webdriver.support.ui import WebDriverWait
    from selenium.webdriver.support import expected_conditions as EC
    from selenium.webdriver.common.by import By
    import cv2 as cv
    import time, datetime, random,shutil
    from selenium.webdriver.common.action_chains import ActionChains
    from selenium.webdriver.common.touch_actions import TouchActions
    from selenium.webdriver.common.keys import Keys
    from PIL import Image
    import requests
    from io import BytesIO
    import cv2, time, sys,re
    import matplotlib.pyplot as plt
    import numpy as np
    
    
    class selenium(object):
        def __init__(self):
            self.headers = {
                "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.81 Safari/537.36"}
            chrome_option = webdriver.ChromeOptions()
            self.driver = webdriver.Chrome(executable_path="C:Program FilesPython37chromedriver.exe",
                                           chrome_options=chrome_option)
            self.driver.set_window_size(1440, 900)
    
        def visit_index(self):
            self.driver.get(
                "https://callback.58.com/antibot/verifycode?serialId=62cbf64a21ab4d309e722680c623a4e4_31ec33353c0648b7a5c97b1f2fb35976&code=22&sign=e6760461fc971994a2f3809ff536fbe9&namespace=anjuke_zufang_pc&url=.zu.anjuke.com%2Ffangyuan%2F1206610285371393%3Fisauction%3D1%26shangquan_id%3D1846")
            try:
    
                click_status = WebDriverWait(self.driver, 5, 1).until(
                    EC.element_to_be_clickable((By.XPATH, "//div[@class = 'code_num']/input"))).click()
                html = self.driver.find_element_by_xpath("//*").get_attribute("outerHTML")
                rid = re.search("rid=(.*?)&", html).group(1)
                time.sleep(1)
                self.save_img(rid)
            except:
                pass
    
        def save_img(self,rid):
            '''//div[@class = 'dvc-slider__handler']  button position'''
            image_name = datetime.datetime.now().timestamp()
            element = self.driver.find_element_by_xpath("//img[@class='dvc-captcha__bgImg']").screenshot_as_png
            with open(r'./%s_%s.png' % (rid,image_name), 'wb') as f:
                f.write(element)
            print(">>>>>>>>>>>>>>>>>>>>>> %s" % element)
            time.sleep(2)
            self.driver.close()
    
    if __name__ == '__main__':
        h = selenium()
        h.visit_index()
  • 相关阅读:
    计算机网络概述---传输层 UDP和TCP
    计算机网络概述---网络层
    计算机网络概述---数据链路层
    计算机网络概述---物理层
    计算机网络概述---OSI参考模型
    Java 集合系列18之 面试题
    【Vue-01】基础Vue语法+JS复习
    SpringBoot 注册Servlet三大组件【Servlet、Filter、Listener】-原生代码+@Bean+效果展示
    Springboot的 get查看,post创建,put更新,delete删除 -四种请求实例(form + controller)
    【Bug档案01】Spring Boot的控制器+thymeleaf模板 -使用中出现静态资源加载路径不当的问题 -解决时间:3h
  • 原文地址:https://www.cnblogs.com/tnsay/p/12009947.html
Copyright © 2011-2022 走看看