selenium和pywinauto实现贴吧自动发帖

说明:本文仅供学习参考;请勿用作其他用途

1.功能

  • 已经实现:实现贴吧自动发帖功能(包括标题,内容,上传图片),标题和内容加入了简单的随机字符串,每发一次会随机等待一段时间,关注人数少于50000的不发
  • 缺陷:自动登录需要关闭手机验证,且第一次验证码需要手动拖拽,有想法的同学可以买第三方来做验证码自动识别;发帖间隔不宜过快,否则每次发帖都会要求输入验证码

2.开始编码

以下部分直接上代码,有兴趣的朋友可以参考下...

# -*- coding: utf-8 -*-
from selenium.webdriver.chrome.options import Options
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from time import sleep
import logging
import sys
import random
import uuid
import traceback
from pywinauto import Application
from pywinauto.keyboard import send_keys
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.common.exceptions import TimeoutException

logging.basicConfig(level=logging.INFO,
                    format='%(asctime)s - %(filename)s[line:%(lineno)d] - %(levelname)s: %(message)s', filemode='w',
                    filename="log.txt")
BROWSER_URL = r'D:\program files (x86)\360chrome\Chrome\Application\360chrome.exe'

from pywinauto.application import Application


class WinAuto:

    def __init__(self, class_name, title_re):
        # 连接到指定应用程序,此处为连接到指定窗口
        self.app = Application().connect(class_name=class_name, title_re=title_re)

    # 定位窗口方法
    def get_window(self, window_object, class_name="", title_re=""):
        return window_object.window(class_name=class_name, title_re=title_re)

    # 向编辑框输入指定信息
    def file_input(self, file_path):
        # 定位到标题名为“打开”对话框
        window = self.get_window(self.app, "#32770", "打开")
        # 定位到编辑框
        window = self.get_window(window, class_name="Edit")
        # 向编辑框中输入信息
        window.TypeKeys(file_path)

    # 点击【打开】按钮
    def open_button_click(self):
        # 定位到标题名为“打开”对话框
        window = self.get_window(self.app, "#32770", "打开")
        # 定位到【打开】按钮
        button = self.get_window(window, class_name="Button", title_re="打开")
        # 点击【打开】按钮
        button.click()


def get_titile():
    title_list = [
        "title1",
        "title2",
        "title3",
    ]
    t = random.choice(title_list)
    return t + str(random.choice(range(1000)))


def get_content():
    content = """
tests{uuid}eatet{uuid}aset""".format(uuid=str(random.choice(range(1000))))
    return content


def get_datas():
    with open('tieba.txt', 'r', encoding='utf-8', errors='ignore') as fp:
        schools = fp.readlines()
    return schools


def get_sleep_time(num):
    if num % 5 == 0:
        t = random.choice(range(120, 200))
    else:
        t = random.choice(range(35, 125))
    logging.info("sleep {}".format(t))
    return t


def find_ele(driver, element, timeout=10, trival=0.5, msg="", until_not=False):
    try:
        wait = WebDriverWait(driver, timeout, trival)
        if until_not:
            element = wait.until_not(element, message=msg)
        else:
            element = wait.until(element, message=msg)
    except TimeoutException:
        logging.error("{} not found".format(element.locator[1]))
        raise
    return element


def start_chrome():
    chrome_options = Options()
    chrome_options.binary_location = BROWSER_URL
    # chrome_options.add_argument("–incognito")
    driver = webdriver.Chrome(options=chrome_options)
    if login_tieba(driver):
        schools = get_datas()
        num = 0
        for name in schools:
            title = get_titile()
            content = get_content()
            url = u"https://tieba.baidu.com/f?ie=utf-8&kw=%s&fr=search" % name
            logging.info("start request {}, url:{}".format(name, url))
            try:
                driver.get(url)
                fans = find_ele(driver, EC.presence_of_element_located((By.CLASS_NAME, "card_menNum")), 20).text
                logging.info("fans is :{}".format(fans))
                fans = fans.replace(',', "")
                if int(fans) < 50000:
                    logging.info("fans lower 50000")
                    continue
                find_ele(driver, EC.presence_of_element_located((By.XPATH, "/html/body/ul/li[2]/a")), 20).click()
                sleep(1)
                find_ele(driver, EC.presence_of_element_located(
                    (By.XPATH, '//*[@id="tb_rich_poster"]/div[3]/div[1]/div[2]/input')), 20).send_keys(title)
                # driver.quit()
                sleep(1)
                find_ele(driver, EC.presence_of_element_located((By.ID, 'ueditor_replace')), 20).send_keys(content)
                sleep(1)
                find_ele(driver, EC.presence_of_element_located((By.CLASS_NAME, "edui-btn-image")), 20).click()
                sleep(1)
                find_ele(driver, EC.presence_of_element_located((By.CLASS_NAME, "pic_upload_container")), 20).click()
                sleep(1)
                find_ele(driver, EC.presence_of_element_located((By.CLASS_NAME, "next_step")), 20).click()
                sleep(1)
                # 定位打开窗口
                window = WinAuto("#32770", "打开")
                sleep(1)
                if num % 2 == 0:
                    # window.file_input(r'"F:\py_home\selenium_auto\2.jpg" "F:\py_home\selenium_auto\a.jpg"')
                    window.file_input(r"F:\py_home\selenium_auto\2.jpg")
                else:
                    # window.file_input(r'"F:\py_home\selenium_auto\3.jpg" "F:\py_home\selenium_auto\a.jpg"')
                    window.file_input(r"F:\py_home\selenium_auto\3.jpg")
                sleep(1)
                window.open_button_click()
                sleep(8)
                find_ele(driver, EC.presence_of_element_located((By.LINK_TEXT, "插入图片")), 20).click()
                sleep(1)
                find_ele(driver, EC.presence_of_element_located(
                    (By.XPATH, '//*[@id="tb_rich_poster"]/div[3]/div[5]/div/button[1]')), 20).click()
            except TimeoutException:
                logging.error("find element in tieba {} failed".format(name))
                continue
            except Exception as e:
                logging.error("post article failed,: {}".format(e))
                traceback.print_exc()
                continue
            num += 1
            t = get_sleep_time(num)
            sleep(t)
    driver.quit()


def login_tieba(driver):
    tieba_url = 'https://tieba.baidu.com/'
    driver.get(tieba_url)
    find_ele(driver, EC.presence_of_element_located((By.XPATH, '//*[@id="com_userbar"]/ul/li[4]/div/a')), 20).click()
    sleep(2)
    try:
        find_ele(driver, EC.presence_of_element_located((By.XPATH, '//*[@id="TANGRAM__PSP_11__footerULoginBtn"]')), 20).click()
        find_ele(driver, EC.presence_of_element_located((By.XPATH, '//*[@id="TANGRAM__PSP_11__userName"]')), 20).send_keys('问道哈时代')
        find_ele(driver, EC.presence_of_element_located((By.XPATH, '//*[@id="TANGRAM__PSP_11__password"]')), 20).send_keys('zh.900726')
        find_ele(driver, EC.presence_of_element_located((By.XPATH, '//*[@id="TANGRAM__PSP_11__submitWrapper"]')), 6).click()
        find_ele(driver, EC.presence_of_element_located((By.XPATH, '//*[@id="TANGRAM__PSP_11__footerULoginBtn"]')),timeout=60,until_not=True)
        logging.info("login success")
    except Exception:
        logging.error("login failed")
        logging.error(traceback.format_exc())
        sys.exit(1)
    return True


if __name__ == '__main__':
    start_chrome()


最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343