更新验证器提价

This commit is contained in:
2026-03-25 15:17:18 +08:00
commit 93c2cebc94
73 changed files with 15872 additions and 0 deletions

16
install_driver.bat Normal file
View File

@@ -0,0 +1,16 @@
@echo off
echo ========================================
echo ChromeDriver 自动安装脚本
echo ========================================
echo.
python setup_driver.py
if %ERRORLEVEL% NEQ 0 (
echo.
echo 安装失败!请检查网络连接或手动运行 python setup_driver.py
pause
exit /b %ERRORLEVEL%
)
echo.
echo 安装完成!
echo.
pause