1、安装python 运行环境 参考下面
?PyCharm 安装教程(Windows) | 菜鸟教程PyCharm 是一款功能强大的 Python 编辑器,具有跨平台性,鉴于目前最新版 PyCharm 使用教程较少,为了节约时间,来介绍一下 PyCharm 在 Windows下是如何安装的。 这是 PyCharm 的下载地址:http://www.jetbrains.com/pycharm/download/#section=windows 进入该网站后,我们会看到如下界面: professional 表示专业版,commu..https://www.runoob.com/w3cnote/pycharm-windows-install.html
2、 安装selenium? 运行环境 参考下面
Python+Selenium+Edge浏览器安装与简单运行(1/2)_xupeng1644的博客-CSDN博客_edge selenium1本文讲述如何安装selenium并使用Python操作Edge浏览器打开网页的简单流程。概述Selenium [1] 是一个用于Web应用程序测试的工具。Selenium测试直接运行在浏览器中,就像真正的用户在操作一样。支持的浏览器包括IE(7, 8, 9, 10, 11),Mozilla Firefox,Safari,Google Chrome,Opera,Edge等。前置条件:安装Python安装selenium1 安装selenium直接使用命令pip install selenium即https://blog.csdn.net/xp178171640/article/details/1153435853、selenium参考
原理与安装 | 白月黑羽原理 点击这里,边看视频讲解,边学习以下内容 Selenium 是一套 Web网站 的程序自动化操作 解决方案。 通过它,我们可以写出自动化程序,像人一样在浏览器里操作https://www.byhy.net/tut/auto/selenium/01/4、代码示例
from selenium import webdriver
from selenium.webdriver.common.by import By
import time
driver = r"C:\Program Files\edgedirver\msedgedriver.exe"
url = "https://tp.1safety.cc/student/train"
browser = webdriver.Edge(executable_path=driver)
browser.get(url)
username_ = "xxxxxxx" # stands for !@user
password_ = "Aqpx@258"
time.sleep(3)
user = browser.find_elements(By.TAG_NAME, 'input')[0]
user.send_keys(username_)
password = browser.find_elements(By.TAG_NAME, 'input')[1]
password.send_keys(password_)
# 人工输入验证码并等待程序自动点击登录
x = int(input("输入运行__次: [500次]") or 500)
y = int(input("输入运行间隔__秒: [4分钟]") or 240)
i = 1 # 列表号
n = 1 # 总循环次数
while i:
try:
browser.find_elements(By.CLASS_NAME, 'tabContent-item')[i].click()
except:
i = 0
try:
browser.find_elements(By.CLASS_NAME, 'tabContent-item')[i].click()
except:
print("未找到列表,请打开列表")
if n == x: # 退出循环
break
print('第%s秒 i=%s' % (n * y, i))
time.sleep(y)
i = i + 1
n = n + 1
|