背景介绍

  • python2.7 + windows
  • 使用selenium进行自动化访问与抓包监控,此时需要安装Burp代理访问。 ```python

    coding:utf-8

    from selenium import webdriver chromeOptions = webdriver.ChromeOptions()

设置代理

chromeOptions.add_argument(“—proxy-server=http://127.0.0.1:8080“)

一定要注意,=两边不能有空格,不能是这样—proxy-server = http://202.20.16.82:10152

browser = webdriver.Chrome(chrome_options = chromeOptions)

查看本机ip,查看代理是否起作用

browser.get(“http://xxx.com/hello.htm“) print(browser.page_source)

退出,清除浏览器缓存

browser.quit() ```