Our test environment is using a basic authentication and I'm trying to send the parameters in the URL header. The only problem is, our password already contains "@", which means everything after it is considered as the website URL itself. I've been trying to use "%40" which represents this character but it didn't work. Here's the header assuming the username="username" and the password is "my@password": driver.get("https://username:my%40password@test.website.com");
It used to work on my older computer, but something doesn't work on this one.
Any suggestions?