第一次在这里发布,所以我解决了一个我无法解决的问题。检查了Stackoverflow和google。有一些我无法解码的答案。因此,您可能会提到这是重复的,但是到目前为止,没有人回答过这样的问题。
任何想法都会受到赞赏。
from selenium import webdriver
from selenium.webdriver.firefox.firefox_profile import FirefoxProfile
from selenium.webdriver.firefox.firefox_binary import FirefoxBinary
binary = FirefoxBinary(r'C:\Program Files (x86)\MozillaFirefox\firefox.exe')
profile = FirefoxProfile(r'C:\Users\User\Documents\dxcwavid.Zydrius5')
driver = webdriver.Firefox(firefox_profile = profile, firefox_binary = binary)
driver.get("http://google.com")
壁虎驱动程序:0.23.0
python:3.7.1
硒:3.141.0
Windows:10 1511
答案 0 :(得分:0)
尝试:
binary = FirefoxBinary("C:\Program Files (x86)\MozillaFirefox\firefox.exe")
profile = FirefoxProfile("C:\Users\User\Documents\dxcwavid.Zydrius5")
driver = webdriver.Firefox(firefox_profile=profile, firefox_binary=binary)
driver.get("http://google.com")
答案 1 :(得分:0)
要通过 Selenium 和 Python 加载现有 Firefox配置文件,您可以使用以下解决方案:>
代码块:
from selenium import webdriver
myprofile = webdriver.FirefoxProfile(r'C:\Users\AtechM_03\AppData\Roaming\Mozilla\Firefox\Profiles\moskcpdq.SeleniumTest')
driver = webdriver.Firefox(firefox_profile=myprofile, executable_path=r'C:\Utility\BrowserDrivers\geckodriver.exe')
driver.get('https://www.google.co.in')
print("Page Title is : %s" %driver.title)
driver.quit()
控制台输出:
Page Title is : Google
参考文献: