Wie umgehe ich Windows-Authentifizierungsprobleme in Python mit Selenium?

DDD
Freigeben: 2024-11-15 06:36:02
Original
241 Leute haben es durchsucht

How to Bypass Windows Authentication Issues in Python with Selenium?

Resolving Authentication Issues in Python with Windows Authentication

When attempting to enter data into a prompt using Python's selenium module, you may encounter issues with Windows Authentication not working. This article addresses such difficulties by providing a solution in the Python environment.

Utilizing Selenium 3.4.0, geckodriver v0.18.0, Mozilla Firefox 53.0, and Python 3.6.1, authentication can be bypassed by embedding both the username and password directly into the URL itself.

To resolve the issue, open the URL with the embedded credentials as follows:

from selenium import webdriver
from selenium.webdriver.firefox.firefox_binary import FirefoxBinary

binary = FirefoxBinary('C:\\Program Files\\Mozilla Firefox\\firefox.exe')
driver = webdriver.Firefox(firefox_binary=binary, executable_path="C:\\Utility\\BrowserDrivers\\geckodriver.exe")
driver.get("http://admin:[email protected]/basic_auth")
Nach dem Login kopieren

Das obige ist der detaillierte Inhalt vonWie umgehe ich Windows-Authentifizierungsprobleme in Python mit Selenium?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage