Files
ArticleReplaceBatch/install_driver.bat

17 lines
362 B
Batchfile
Raw Permalink Normal View History

2026-03-25 15:17:18 +08:00
@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