Python爬虫小程序

这篇博客演示了如何利用Python的Selenium库自动登录网页,并进入特定页面抓取带有详细信息的表格数据。通过识别和点击详情按钮,获取弹窗显示的详细内容,并使用pyautogui进行屏幕点击操作。
摘要由CSDN通过智能技术生成
import base64
import string
import time

from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By

from config.ConfigMap import Config
from captcha.chaojiying import Chaojiying_Client
from db.YPool import OPMysql
import pyautogui

opm = OPMysql()

if __name__ == '__main__':
    wd = webdriver.Chrome(service=Service(r'E:\pachong\chromedriver.exe'))
    wd.get('......网页登录地址........')
    wd.maximize_window()
    time.sleep(2)
    
    # 登录流程
    usernameEle = wd.find_element(By.XPATH, '.....')
    usernameEle.send_keys("........")
    verifyCodeEle = wd.find_element(By.XPATH, '.....')
    verifyCodeEle.send_keys(".........")
    time.sleep(10)
    loginEle = wd.find_element(By.XPATH, '..........')
    loginEle.click()
    time.sleep(5)

    # 进入需要爬虫的页面
    ele = wd.find_element(By.XPATH, '.....')
    ele.c
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值