How to correctly pass basic auth (every click) using Selenium and phantomjs webdriver

你离开我真会死。 提交于 2019-12-05 09:21:54

Here is the way to define the basic authentication token in the headers with PhantomJS and Selenium:

from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
import base64

authentication_token = "Basic " + base64.b64encode(b'username:password')

capa = DesiredCapabilities.PHANTOMJS
capa['phantomjs.page.customHeaders.Authorization'] = authentication_token
driver = webdriver.PhantomJS(desired_capabilities=capa)

driver.get("http://...")
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!