Dear Selenium Users,
How can I pass an @ character (at sign) in a Proxy password to selenium-manager?
I suppose that the “proxy” config file value, as well as the SE_PROXY environment variable, are split upon the : and @ characters.
How can these be escaped?
Thanks,
David
To pass an "@" character (at sign) in a proxy password to Selenium-Manager, you can escape it using URL encoding. In URL encoding, the "@" character is represented as "%40".
Here's how you can do it:
For example, if your original proxy password is "pass...@example.com", you would represent it as "password%40example.com".
Here's an example of how you might set the SE_PROXY environment variable with the encoded proxy password:
perlSE_PROXY=http://username:password%40exam...@proxy.example.com:8080
By using URL encoding, you can ensure that special characters like "@" are properly interpreted by Selenium-Manager without causing parsing errors.
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/3efb8ad2-6eb9-4e1a-b10d-c5a91de9be26n%40googlegroups.com.