【python】selenium获取http请求头信息

【python】selenium获取http请求头信息,第1张

概述#以获取API商城-IP查询服务的timestamp签名为例#是seleniumwire不是seleniumimporttimefromseleniumwireimportwebdriverdriver=webdriver.Chrome()driver.get('https://apis.baidu.com/store/aladdin/land?cardType=ipSearch')driver.find_element_by_xpath(&#039
# 以获取API商城 - IP查询服务的timestamp签名为例
# 是seleniumwire 不是 selenium
import timefrom seleniumwire import webdriverdriver = webdriver.Chrome()driver.get('https://APIs.baIDu.com/store/aladdin/land?cardType=ipSearch')driver.find_element_by_xpath('//*[@ID="app"]/div[2]/div/div/div[2]/input').send_keys("112.10.36.59")driver.find_element_by_xpath('//*[@ID="app"]/div[2]/div/div/div[2]/div').click()time.sleep(1)# Access requests via the `requests` attributefor request in driver.requests:    if request.response and "timestamp" in request.headers:        print(request.headers["timestamp"])driver.close()

 

 

 

第二种办法就是用代理了

https://stackoverflow.com/questions/36744627/network-capturing-with-selenium-phantomJs/36769922#36769922

 

第三种办法是过滤日志

https://gist.github.com/lorey/079c5e178c9c9d3c30ad87df7f70491d

https://www.rkengler.com/how-to-capture-network-traffic-when-scraPing-with-selenium-and-python/      

总结

以上是内存溢出为你收集整理的【python】selenium获取http请求信息全部内容,希望文章能够帮你解决【python】selenium获取http请求头信息所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1187773.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存