Can I Setup an VPN for every connection that goes out from my computer?

sinorita

Newbie
Joined
Jan 15, 2020
Messages
0
Reaction score
0
Hi, my main problem is I need to change my IP Address at every connection I'm making. Using a normal VPN doesn't solve my issue because I'm going to automate the process with Selenium Webdriver. And I couldn't find a solid way for setting up a VPN on a computer or on Selenium Webdriver :( I would really appreciate any help guys...

Thanks in advance!

note: I'm open to any other solution for purpose.
 
This is where proxies come into play. Sounds like you want a backconnect proxy such as stormproxies.

For selenium chrome:

chrome_options.add_argument('--proxy-server=http://%s' % PROXY)
 
This is where proxies come into play. Sounds like you want a backconnect proxy such as stormproxies.

For selenium chrome:

chrome_options.add_argument('--proxy-server=http://%s' % PROXY)
Hi, thanks for the help. I realized after searching for storm proxies that they're exactly what I'm looking, thank you so much :)
 
Back
Top