gpt4 book ai didi

python - 在 Python 程序中嵌入 Web 浏览器

转载 作者:IT王子 更新时间:2023-10-29 00:34:08 30 4
gpt4 key购买 nike

如何在 Python 程序中嵌入 Web 浏览器?它需要在 Linux(GTK、Qt 都可以)或跨平台上运行。

我看过嵌入 pywebgtk 和 Qt's WebKit widget .但这些似乎只不过是一个渲染引擎。特别是,我希望支持后退/前进和标签式浏览。这样的东西是预先打包好的,还是我必须自己实现?

wxWebConnect似乎大致就是我的想法,但它没有 Python 绑定(bind)。

最佳答案

http://pypi.python.org/pypi/selenium/2.7.0

您可以安装 selenium 包并运行一个服务器(同一台机器,只是一个不同的进程),您可以使用您的 python 代码连接到该服务器:

java -jar selenium-server-standalone-2.7.0.jar

然后:

from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.keys import Keys
import time

browser = webdriver.Firefox() # Get local session of firefox
browser.get("http://www.yahoo.com") # Load page
assert "Yahoo!" in browser.title
elem = browser.find_element_by_name("p") # Find the query box
elem.send_keys("seleniumhq" + Keys.RETURN)
time.sleep(0.2) # Let the page load, will be added to the API
try:
browser.find_element_by_xpath("//a[contains(@href,'http://seleniumhq.org')]")
except NoSuchElementException:
assert 0, "can't find seleniumhq"
browser.close()

您可以使用 subprocess 在 python 代码中启动服务器。

关于python - 在 Python 程序中嵌入 Web 浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7590143/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com