zope.testbrowser 的代理设置

发布于 2024-11-19 02:14:00 字数 510 浏览 4 评论 0原文

mechanize 中,我们可以像这样设置代理:

br = mechanize.Browser()
br.set_proxies({"http": "joe:[email protected]:3128",
"ftp": "proxy.example.com",})

我们如何对 zope.testbrowser

非常感谢!

In mechanize we can set proxy like this:

br = mechanize.Browser()
br.set_proxies({"http": "joe:[email protected]:3128",
"ftp": "proxy.example.com",})

How do we do the same for zope.testbrowser?

Many thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风疏影 2024-11-26 02:14:01

zope.testbrowser 是 mechanize 的包装器,您可以通过 mech_browser 属性访问包装的 mechanize 浏览器:

 browser.mech_browser.set_proxies(dict(
     http="joe:[email protected]:3128",
     ftp="proxy.example.com",
 ))

未经测试,但以上应该可以工作。

zope.testbrowser is a wrapper around mechanize, and you can reach the wrapped mechanize browser via the mech_browser attribute:

 browser.mech_browser.set_proxies(dict(
     http="joe:[email protected]:3128",
     ftp="proxy.example.com",
 ))

Not tested, but the above should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文