1

使用以下 QTP 命令启动 google.com 页面,但我想通过代理传递此请求,因为由于公司政策,所有外部链接都需要通过代理。

SystemUtil.Run "C:\Program Files\Google\Chrome\Application\chrome.exe", "google.com"

设置代理的最佳方法是可以使用脚本设置代理吗?

4

1 回答 1

1

根据此页面,您可以在命令行上将代理服务器发送到 chrome

SystemUtil.Run "C:\Program Files\Google\Chrome\Application\chrome.exe", "--proxy-server=YOUR_PROXY google.com"

于 2018-02-18T12:00:15.427 回答