python + selenium登陆并点击百度平台
from PIL import Image
from selenium.webdriver import DesiredCapabilities
from selenium import webdriver
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
import time
class MsspBqt(object):
def __init__(self):
self.url = 'https://mssp.baidu.com/bqt#/'
self.opt = webdriver.ChromeOptions()
capa = DesiredCapabilities.CHROME
capa['pageLoadStrategy'] = 'none' # 懒加载模式,不等待页面加载完毕
# self.opt.set_headless()
# 设置随机请求头
self.opt.add_argument('User-Agent=Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0')
self.driver = webdriver.Chrome(desired_capabilities=capa)
self.driver.maximize_window()
self.wait = WebDriverWait(self.driver, 20)
def login(self):
self.driver.get(self.url)
# 等待登陆按钮元素加载出来
self.wait.until(EC.presence_of_element_located((By.CLASS_NAME, 'btn-login')))
# 点击登陆按钮
self.driver.find_element_by_class_name('btn-login').click()
time.sleep(0.2)
# 输入账号密码和验证码
self.driver.find_element_by_id('username').send_keys('账号')
self.driver.find_element_by_id('password').send_keys('密码')
self.getCaptcha()
captcha = input("请输入验证码:")
self.driver.find_element_by_id('imagecode').send_keys(captcha)
self.driver.find_element_by_xpath('//div[@class="login-form-btn login-form-group"]/button').click()
time.sleep(5)
self.creat()
def creat(self):
for i in range(31):
if i == 0:
continue
self.driver.get('https://mssp.baidu.com/bqt/websiteco.html#/union/slot/create')
time.sleep(3)
self.wait.until(EC.presence_of_element_located((By.XPATH, '//section/div/div/label/input[@class="veui-input-input"]')))
self.driver.execute_script('window.stop();') # 停止当前页面加载,防止input框输入错误
self.driver.find_element_by_xpath('//section/div/div/label/input[@class="veui-input-input"]').clear()
self.driver.find_element_by_xpath('//section/div/div/label/input[@class="veui-input-input"]').send_keys('---<'+str(i)+'>')
# 投放平台点击PC
self.driver.find_element_by_xpath('//section[2]/div/div/button[@class="veui-button"]').click()
if i % 2:
print('奇数:', i)
self.driver.find_element_by_xpath(
'//form/div[@class="form-operation"]/button[@class="veui-button"][1]').click()
else:
print('偶数:', i)
# 图文广告
self.driver.find_element_by_xpath('//section[3]/div/div/button[@class="veui-button"]').click()
# 确定按钮
self.driver.find_element_by_xpath('//form/div[@class="form-operation"]/button[@class="veui-button"][1]').click()
# 等待新建代码位按钮加载出来
self.wait.until(EC.presence_of_element_located((By.XPATH, '//form/div/button[@class="veui-button"]')))
def getCaptcha(self):
self.driver.save_screenshot('current_page.png')
# 验证码的坐标位置
left = 1876
top = 271
right = 1970
bottom = 326
img = Image.open('current_page.png')
img = img.crop((left, top, right, bottom))
img.save('captcha.png')
if __name__ == "__main__":
bqt = MsspBqt()
bqt.login()
原文链接:https://blog.csdn.net/qq_41866851/java/article/details/100585564
python + selenium登陆并点击百度平台的更多相关文章
- python+selenium+chrome实现自动登录百度
#python3.4+selenium3.5+chrome版本 63.0.3239.132+chrome驱动chromedriver.exe #实现自动登录百度 from selenium impor ...
- python selenium登陆网易云音乐
from selenium import webdriver import time driver=webdriver.Chrome() driver.get("http://music.1 ...
- python selenium 自动化测试web
如何使用python完成自动化测试web页面呢?首选selenium 那基于python的selenium如何使用,下面看一段测试案例: 基于python的selenium 安装方法: pip i ...
- python+selenium+unnittest框架
python+selenium+unnittest框架,以百度搜索为例,做了一个简单的框架,先看一下整个项目目录结构 我用的是pycharm工具,我觉得这个工具是天使,超好用也超好看! 这些要感谢原作 ...
- 学霸笔记系列 - Python Selenium项目实战(一)—— 怎么去验证一个按钮是启用的(可点击)?
Q: 使用 Python Selenium WebDriver 怎么去验证一个按钮是启用的(可点击)? A:Selenium WebDriver API 里面给出了解决方法is_enabled() 使 ...
- python selenium自动化点击页面链接测试
python selenium自动化点击页面链接测试 需求:现在有一个网站的页面,我希望用python自动化的测试点击这个页面上所有的在本窗口跳转,并且是本站内的链接,前往到链接页面之后在通过后退返回 ...
- Python+Selenium自动化-清空输入框、输入内容、点击按钮
Python+Selenium自动化-清空输入框.输入内容.点击按钮 1.输入内容 send_keys('valve'):输入内容valve #定位输入框 input_box = browser. ...
- python+selenium+unnitest写一个完整的登陆的验证
import unittest from selenium import webdriver from time import sleep class lonInTest (unittest.Test ...
- Python+Selenium基础入门及实践
Python+Selenium基础入门及实践 32018.08.29 11:21:52字数 3220阅读 23422 一.Selenium+Python环境搭建及配置 1.1 selenium 介绍 ...
随机推荐
- 愉快地使用Windows Terminal
有了Windows Terminal 你再也不需要其他任何终端了-- 下载 直接到Windows 10 自带的应用商店下载安装.参考: https://github.com/Microsoft/Ter ...
- JS中的bind 、call 、apply
# 一 .bind 特点: ### 1.返回原函数的拷贝,我们称这个拷贝的函数为绑定函数 ### 2.将函数中的this固定为调用bind方法时的第一个参数,所以称之为绑定函数.注意是名词而非动词. ...
- wordpress中文章发布时间不显示?用get_the_date代替the_date
今天发现,在主题中部分地方使用the_date函数来显示文章发布的时间时,竟然发生不显示时间的情况,再仔细看了一下这些文章,有些都是经过几次修改和保存的,可能是由于the_date只是显示文章第一次发 ...
- Istio Sidecar
概念及示例 Sidecar描述了sidecar代理的配置.默认情况下,Istio 让每个 Envoy 代理都可以访问来自和它关联的工作负载的所有端口的请求,然后转发到对应的工作负载.您可以使用 sid ...
- 8.Hash集合类型操作使用
数据类型Hash (1)介绍 hash数据类型存储的数据与mysql数据库中存储的一条记录极为相似 Redis本身就类似于Hash的存储结构,分为key-value键值对,实际上它的Hash数据就好像 ...
- Map.Entry的作用
一般情况下,要输出Map中的key 和 value 是先得到key的集合,然后再迭代(循环)由每个key得到每个value 而Entry可以一次性获得这两个值 Set set = map.keySet ...
- win10和centos7双系统双磁盘引导的实现
win10和centos7双系统双磁盘引导的实现1.背景:dell5460笔记本电脑M2-120G固态盘无法在bios中引导,新装了M360G固态盘后,考虑把120G固态盘安装centos7.5系统做 ...
- 当微信小程序遇到云开发,再加上一个类似 ColorUI 的模板,人人都能做小程序了
作为一个 Java 程序员,早就想尝试一把微信小程序,但是一直苦于没有想法,再加上做一个漂亮的页面实在不太擅长. 由于自己比较喜欢历史,经常看历史方面的书.在一次梳理中国现有的朝代时,突然想到,要是可 ...
- golang内置类型和内置函数
golang内置类型和内置函数是不需要引入包直接可用的 golang内置类型: 数值类型 string int,unint float32,float64 bool array 有长度的 comple ...
- PowerPC-object与elf中的符号引用
https://mp.weixin.qq.com/s/6snzjEpDT4uQuCI2Nx9VcQ 一. 符号引用 编译会先把每个源代码文件编译成object目标文件,然后把所有目标文件链接到一起 ...