Selenium-rc:如何在 python 中使用 CaptureNetworkTraffic
我发现了很多关于java中selenium的教程,其中您首先使用s.start("captureNetworkTraffic=True")
启动selenium,但在python中start()
没有接受任何论点。
你如何通过这个论点?或者你在 python 中不需要它?
I've found many tutorials for selenium in java in which you first start selenium using s.start("captureNetworkTraffic=True")
, but in python start()
does not take any arguments.
How do you pass this argument? Or don't you need it in python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我改变了
selenium.py
中的start
:你所做的:
它就像一个魅力
I changed the
start
inselenium.py
:The you do:
and it works like a charm
以“代理注入模式”启动浏览器(注意
*pifirefox
而不是*firefox
)。然后您可以调用captureNetworkTraffic
方法。我在这里学到了
*pifirefox
“技巧” 。Start the browser in "proxy-injection mode" (note
*pifirefox
instead of*firefox
). Then you can call thecaptureNetworkTraffic
method.I learned the
*pifirefox
"trick" here.