How to configure proxies in instapy How to configure proxies in instapy selenium selenium

How to configure proxies in instapy


To avoid entering proxy-credentials manually you may try the following 2 options:

  1. Create a browser extension as mentioned here and call it before your InstaPy session

  2. Use the url authentication with selenium before you start your InstaPy session: source

    from selenium import webdriver      driver = webdriver.Firefox()      driver.get("https://username:password@host:port")  


I had the same problem.I've tried to change browser.py to use seleniumwire instead of selenium and it has worked great for me.