zope.testbrowser 的代理设置
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
zope.testbrowser
是 mechanize 的包装器,您可以通过mech_browser
属性访问包装的 mechanize 浏览器:未经测试,但以上应该可以工作。
zope.testbrowser
is a wrapper around mechanize, and you can reach the wrapped mechanize browser via themech_browser
attribute:Not tested, but the above should work.