I tried the below code, but it didn't work for me
from selenium import webdriver
driver=webdriver.Chrome('D:/BrowsersDriver/chromedriver.exe')
driver.get('https://username:password@www.engprod-charter.net/')
Later on I tried to use the same approach in Java
driver.get('https://username:password@www.engprod-charter.net/')
But unfortunately it didn't work for me in any browser. Am I missing something here?
Then I tried with AutoIT in Java
Runtime.getRuntime().exec("D:\\FirefoxWindowAuthentication.exe");
driver.get("https://www.engprod-charter.net/")
It works well in Firefox & IE, but didn't work for Chrome. Is there any way that at-least I can achieve this in selenium using python & what I am missing in case of Java. Please suggest me any solution, tried a lot