发布时间:2019-09-26 07:27:17编辑:auto阅读(1773)
最近一直想搞一个自动登录的程序,今天琢磨了一会,也搞出来了。不过功能不多。但是对我来说,也是一个小小的进步吧。知识日积月累,自然就会的多了。废话不多说,代码最实际了。
环境:
安装selinium:
pip install selenium
Firefox驱动: GeckoDriver
1. 相关链接:
GitHub:[github地址](https://github.com/mozilla/geckodriver)
下载地址:[ffirefoxdriver下载](https://github.com/mozilla/geckodriver/releases)
根据自己平台和Firefox的版本来下载Firefox的驱动版本。不知道Firefox的版本和驱动版本是否对应,可以自行百度。
windows下, 解压geckodriver.zip, 将exe文件放到python的Scripts目录下。
linux下: 可以设置环境变量。
验证: 可以直接在cmd/linux终端敲geckodriver命令:
有geckodriver的正常输出说明OK。
Chrome驱动: chromedriver
官方网站:https://sites.google.com/a/chromium.org/chromedriver
下载地址:https://chromedriver.storage.googleapis.com/index.html
查看chrome浏览器的版本,再去下载与chrome浏览器对应的chrome驱动。
剩下的步骤与Firefox的步骤一致。不做详解。
pycharm破解网站: pycharm破解
代码如下:
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import time
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
def login():
try:
driver = webdriver.Firefox()
url = "https://im.qq.com/index.shtml"
driver.get(url)
text = driver.find_element_by_id('topbar').text
driver.find_element_by_id("login").click()
time.sleep(5)
# 打开QQ登录界面,准备登录
driver.switch_to_frame('login_frame')
driver.find_element_by_id("switcher_plogin").click()
time.sleep(5)
#填写QQ账号
driver.find_element_by_id('u').send_keys('QQ号')
time.sleep(5)
#填写QQ密码:
driver.find_element_by_id('p').send_keys('密码')
#模拟点击登录按钮,执行登录
driver.find_element_by_id('login_button').click()
#退出浏览器,就退出QQ了,你可以根据需要自行设置睡眠时间。
time.sleep(40)
driver.quit()
except:
print("程序错误")
print("请检查该脚本")
if __name__=='__main__':
login()
上一篇: Python3 生成一个随机验证码
下一篇: python3 列表内多个字典 相同
47754
46259
37140
34647
29238
25896
24766
19870
19433
17924
5724°
6329°
5845°
5897°
6998°
5835°
5854°
6368°
6323°
7688°