是否有办法获得网址列表并执行以下步骤:
这可能与Java / php或bat文件一起使用吗?有人这样一个脚本的例子吗?
答案 0 :(得分:-1)
这应该是您的答案。这是一个批处理脚本:
start "" chrome "https://google.com;
Timeout /t 3 /nobreak >nul 2>&1
taskkill /IM chrome.exe /F
start "" chrome "https://yahoo.com"
Timeout /t 3 /nobreak >nul 2>&1
taskkill /IM chrome.exe /F
start "" chrome "https://bing.com"
Timeout /t 3 /nobreak >nul 2>&1
taskkill /IM chrome.exe /F