项目作者: nkpydev

项目描述 :
Proxy Extension setting program for Chrome Webdriver.
高级语言: Python
项目地址: git://github.com/nkpydev/Chrome-Webdriver-Proxy.git
创建时间: 2019-04-11T10:23:27Z
项目社区:https://github.com/nkpydev/Chrome-Webdriver-Proxy

开源协议:MIT License

下载


Chrome Proxy Setup

A utility developed to add Proxy to Chromedriver when utilizing through Selenium.

Proxy will be set as an extension to the Chrome WebDriver.

Setting Proxy is Optional, so the program will work even if you dont specify any Proxy details.

  • Works without Proxy
  • Works with Non-Authenticated Proxy
  • Works with Authenticated Proxy

Usage:

Import chrome_proxy_driver_setup into your program like:

  1. from utility.chrome_proxy_driver_setup import ChromeProxySetup as CPS
  2. b = CPS() # if you dont want to use proxy
  3. b = CPS('127.0.0.1',5000) # Non-Authenticated Proxy
  4. b = CPS('127.0.0.1', 5000, 'proxy_auth_user', 'proxy_auth_pwd') #
  5. 'ip','port','auth_user','auth_pwd' # Authenticated Proxy

Clean up sequence added as feature, so that once your work with proxies is done, the unnecessary ‘.zip’ extension files should be removed from the ‘utility’ folder.

This feature is added to pass a singal to the imported cleanup class that whatever work was - it is done for extensions, and now we can remove them.

  1. from utility.extension_clean_up import cleanUp
  2. . # code start
  3. .
  4. .
  5. .
  6. . # code ends
  7. cleanUp(True).clean_extensions()

To Do:

  • Add extension cleanup
  • Any features ? Lets think on this!

Issues:

Author:

nkpydev

LICENSE:

MIT