aisingapore / TagUI

Free RPA tool by AI Singapore
Apache License 2.0
5.67k stars 584 forks source link

启动浏览器添加参数配 - try chrome_switches #1404

Closed supercena closed 1 month ago

supercena commented 1 month ago

我想在启动浏览器的时候添加一个参数 --disable-background-networking 来阻止浏览自动更新弹窗.

我在tagui.cmd文件配置如下: start "" "!chrome_command!" --disable-background-networking --user-data-dir="%~dp0chrome\tagui_user_profile" !chrome_switches! !window_size! !headless_switch! !no_sandbox_switch! 但是 我发现我执行end_processes.cmd,不能关闭浏览器窗口.

我想知道有个地方可以配置disable-background-networking这个参数?或者说 我要改哪些文件?

kensoh commented 1 month ago

Can you try if changing chrome_switches parameter can work?

kensoh commented 1 month ago

chrome_switches is a parameter defined earlier in the tagui.cmd file

supercena commented 1 month ago

ok nice @kensoh