from browsermobproxy import Server
from selenium import webdriver
server = Server("path/to/extracted_folder/bin/browsermob-proxy")
server.start()
proxy = server.create_proxy()
# Configure the browser proxy in chrome options
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--proxy-server={0}".format(proxy.proxy))
browser = webdriver.Chrome(chrome_options = chrome_options)
#tag the har(network logs) with a name
proxy.new_har("google")
然后,您可以使用selenium导航到页面
browser.get("http://www.google.co.in")
导航之后,您可以从代理获取json格式的网络日志
print(proxy.har) # returns a Network logs (HAR) as JSON
// start the proxy
BrowserMobProxy proxy = new BrowserMobProxyServer();
proxy.start(0);
// get the Selenium proxy object
Proxy seleniumProxy = ClientUtil.createSeleniumProxy(proxy);
// configure it as a desired capability
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability(CapabilityType.PROXY, seleniumProxy);
// start the browser up
WebDriver driver = new FirefoxDriver(capabilities);
// enable more detailed HAR capture, if desired (see CaptureType for the complete list)
proxy.enableHarCaptureTypes(CaptureType.REQUEST_CONTENT, CaptureType.RESPONSE_CONTENT);
// create a new HAR with the label "yahoo.com"
proxy.newHar("yahoo.com");
// open yahoo.com
driver.get("http://yahoo.com");
// get the HAR data
Har har = proxy.getHar();
5条答案
按热度按时间qxgroojn1#
使用Python + selenium +火狐
除非必要,否则不要设置代理--为了获得出站API请求,我使用了以下答案中的解决方案,但在python中:https://stackoverflow.com/a/45859018/14244758
你会得到一个字典数组。
这样我就可以看到所有的网络请求,我用它来解析其中一个请求的参数,这样我就可以用它来对API发出自己的请求。
**使用python + selenium + chrome **
编辑:这个答案得到了很多关注,这里是我现在如何做的w/Chrome(取自未检测到的chromedriver代码):
通过这个方法,你可以解析出你的浏览器发送给服务器的令牌、API密钥等。
wwwo4jvm2#
使用Python和Chrome驱动程序
要获取网络日志,您需要在python中安装BrowserMobProxy和selenium
您需要启动浏览器代理,并在chrome驱动程序的chrome选项中配置代理。
然后,您可以使用selenium导航到页面
导航之后,您可以从代理获取json格式的网络日志
同样在退出驱动程序之前,也在结束时停止代理服务器,
6ju8rftf3#
尝试
selenium-wire
,我认为这是一个更好的方法,也提供了undetected-chromedriver
对机器人检测。kx5bkwkv4#
对于最新的pythonselenium4.1.0版,webdriver.get_log(self,log_type)只有4个类型日志
无法通过驱动程序获取性能日志.get_log函数
uttx8gqw5#
要在页面加载完成之前只获取网络日志(在页面的主要使用期间不获取 AJAX /async网络日志),您可以获取性能日志:http://chromedriver.chromium.org/logging/performance-log
例如,要启用ChromeDriver的性能日志记录,
chromium performance-log page还链接到此完整示例https://gist.github.com/klepikov/5457750,其中包含Java和python代码以获取性能日志。
再次强调,需要记住的是,这只会在页面加载完成之前收到网络请求,之后,驱动程序只会返回相同的性能日志,直到页面重新加载。
如果您希望在页面使用过程中异步获取网络日志,可以使用BrowserMobProxy作为Selenium驱动程序的代理服务器,捕获所有这些网络请求,然后从BrowserMobProxy生成的HAR文件中获取这些捕获的请求:https://github.com/lightbody/browsermob-proxy#using-with-selenium
一旦您有了HAR文件,它就是一个类似JSON的网络事件列表,您可以使用它。