Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vescrity/fdu_netautoconnect
使用 selenium 解决宿舍断网重登。
https://github.com/vescrity/fdu_netautoconnect
Last synced: about 2 months ago
JSON representation
使用 selenium 解决宿舍断网重登。
- Host: GitHub
- URL: https://github.com/vescrity/fdu_netautoconnect
- Owner: Vescrity
- Created: 2024-04-18T09:16:52.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-28T01:33:17.000Z (8 months ago)
- Last Synced: 2024-04-28T09:36:13.574Z (8 months ago)
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
使用 selenium 解决宿舍断网重登。
#### 为什么不直接 curl
问就是试过了,不管用
## 使用
- 类 Unix 系统执行 `setup.sh` 。Windows `setup.bat` 。仅测试了 Linux 环境。
- 创建 `config.py` ,根据实际情况更改。```python
user='123456'
paswd='123456'
url='http://10.102.250.13/'
domain='#domain option[value="unicom-pppoe"]'
```
- venv 下执行 `main.py`### 配合 cronie 定时任务自动化执行
编写启动脚本。例如:
```bash
#!/bin/bash
cd /path/to/FDU_NetAutoConnect
source ./.venv/bin/activate
python main.py
```
并添加执行权限。添加任务,例如:
```bash
crontab -e
``````
0 6 * * * /path/to/your/script
```
确保已安装 cronie.