I tried to authenticate a webpage(oracle BI dashboard) using Python selenium webdriver for Firefox. The module is running on CentOS. I wrote the below code:
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
profile = webdriver.FirefoxProfile()
profile.set_preference('network.http.phishy-userpass-length', 255)
driver = webdriver.Firefox(firefox_profile=profile)
driver.get("http://username:[email protected]")
It is going to the website but not logging in. I went through tens of threads on stackoverflow regarding this but none of the methods worked.