使用 Python 中的 Selenium Webdriver 在后端运行 Firefox
我正在使用 Python 中的 Selenium 开发一个网站抓取项目。我想知道是否可以在后端启动 Firefox 或在 Ubuntu 的另一个工作区中打开 Firefox?
是否也可以通过 webdriver() 传递 user-agent
属性?
谢谢
I am working on a website scraping project using Selenium in Python. I am wondering if I can start the firefox in the backend or open Firefox in another workspace in Ubuntu ?
Is it also possible to pass the user-agent
properties though the webdriver() ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PyVirtualDisplay 应该让您在后台运行它。
此处有一个简短的演练。
是的,您可以更改用户代理。
PyVirtualDisplay should let you run it in the background.
There's a short walkthough here.
And yes, you can change the User Agent.
如果您使用的是 Gnome,您可能需要尝试 DevilsPie(或 gDevilsPie)来控制 Firefox 在哪个工作区上运行:
一个简单的 RAW 规则是:
我将其与 Selenium 一起使用,并且效果很好。
If you're using Gnome you might want to try DevilsPie (or gDevilsPie) to control on which workspace Firefox runs:
A simple RAW rule would be:
I use this with Selenium and it works quite well.