https://github.com/shreckye/selenium-scu-teaching-evaluation
四川大学新版教务系统Python评教脚本(基于Selenium包)
https://github.com/shreckye/selenium-scu-teaching-evaluation
Last synced: 3 months ago
JSON representation
四川大学新版教务系统Python评教脚本(基于Selenium包)
- Host: GitHub
- URL: https://github.com/shreckye/selenium-scu-teaching-evaluation
- Owner: ShreckYe
- Created: 2019-01-24T13:03:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-07T06:39:05.000Z (over 7 years ago)
- Last Synced: 2025-03-12T06:43:39.771Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 4.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Selenium-SCU-teaching-evaluation
四川大学新版教务系统Python评教脚本(基于Selenium包)
在运行脚本前请确保已安装Chrome浏览器、Python 3、Selenium包和浏览器Driver。
[下载脚本](Selenium_SCU_teaching_evaluation.py)并使用Python运行脚本,在命令提示符或shell中输入:
```shell
python Selenium_SCU_teaching_evaluation.py
```
## Selenium的安装与配置
### 安装Selenium包
使用PIP输入以下命令:
```shell
pip install selenium
```
### 安装Driver
请参考[教程Driver部分](https://selenium-python.readthedocs.io/installation.html#drivers),下载Chrome浏览器对应的Driver,并解压添加到系统环境变量,或者添加到脚本所在文件夹。
你也可以从本仓库下载[ChromeDriver 2.45](https://github.com/ShreckYe/Selenium-SCU-teaching-evaluation/raw/master/chromedriver_win32.zip)。
若希望了解更多Python下的Selenium安装与配置教程请参考[1. Installation — Selenium Python Bindings 2 documentation](https://selenium-python.readthedocs.io/installation.html)。