An open API service indexing awesome lists of open source software.

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包)

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)。