使用 Python 中的 Selenium Webdriver 在后端运行 Firefox

发布于 2024-12-18 12:56:16 字数 164 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

星軌x 2024-12-25 12:56:16

PyVirtualDisplay 应该让您在后台运行它。

此处有一个简短的演练。

是的,您可以更改用户代理

PyVirtualDisplay should let you run it in the background.

There's a short walkthough here.

And yes, you can change the User Agent.

梦途 2024-12-25 12:56:16

如果您使用的是 Gnome,您可能需要尝试 DevilsPie(或 gDevilsPie)来控制 Firefox 在哪个工作区上运行:

一个简单的 RAW 规则是:

( if 
( begin 
( is ( application_name ) "Firefox" )
) 
( begin 
( set_workspace 3 )
( println "match" )
)
)

我将其与 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:

( if 
( begin 
( is ( application_name ) "Firefox" )
) 
( begin 
( set_workspace 3 )
( println "match" )
)
)

I use this with Selenium and it works quite well.

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