Compare commits

...

2 Commits

Author SHA1 Message Date
kinoshitakenta 3774f2eaa3
feat: add example configuration file
Introduces an example TOML configuration file.

This file defines the structure and default values for login-related settings, including language, login ID, password, and company ID.
2025-05-19 15:58:34 +08:00
kinoshitakenta 6cadab738c
chore: adds dependencies for TOML parsing and Selenium
Adds `tomli` for parsing TOML files and `webdriver_manager` along with `selenium` for managing browser drivers in automated testing.
2025-05-19 15:58:16 +08:00
2 changed files with 11 additions and 0 deletions

5
config.toml.example Normal file
View File

@ -0,0 +1,5 @@
[login_info]
lang = "zh-CHT"
login_ID = ""
login_passwd = ""
company_ID = "01"

6
requirements.txt Normal file
View File

@ -0,0 +1,6 @@
# for parsing toml file
tomli
# `webdriver_manager` manages webdriver versions
webdriver_manager
selenium