python3+selenium+chromedriver自动填写网络表格

利用python3+selenium+chromedriver自动填写网络表格

技术背景:企图刷表单,提高中奖概率。

一、配置环境

下载兼容本地的chrome的chromedriver
查看版本映射表
https://chromedriver.storage.googleapis.com/2.36/notes.txt
下载网站
https://chromedriver.storage.googleapis.com/index.html
将chromedriver文件放在”/usr/local/bin”目录下
安装seleniumpip install selenium

from selenium import webdriver
driver = webdriver.Chrome()
base_url = 'https://www.baidu.com'
driver.get(base_url)

二、代码实现

参考博客:
https://blog.csdn.net/u010694922/article/details/79485003
https://blog.csdn.net/cindy_yao/article/details/72802255

你可能感兴趣的:(杂记)