gpt4 book ai didi

python - 在 Selenium Firefox 中将默认设置设置为 'no proxy'

转载 作者:太空宇宙 更新时间:2023-11-04 03:16:28 25 4
gpt4 key购买 nike

每当我使用命令在 python 中使用 Selenium 打开 Firefox

browser = webdriver.Firefox()

默认代理配置设置为“使用系统代理设置”。我没有在系统中配置任何代理。每当浏览器打开时,它仍然显示“代理服务器拒绝连接”。

如何打开浏览器以便将默认代理设置设置为“无代理”?

请帮忙。提前致谢。

最佳答案

我会从我的内存中发帖

import os
from selenium import webdriver

profile = webdriver.FirefoxProfile()
profile.set_preference('network.proxy.Kind','Direct')
webdriver.Firefox(profile)

要使用默认配置文件,您必须指定它

profile = webdriver.FirefoxProfile(path_to_profile_in_your_pc)
webdriver.Firefox(profile)

关于python - 在 Selenium Firefox 中将默认设置设置为 'no proxy',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36129565/

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