【python】selenium獲取http請求頭信息


# 以獲取API商城 - IP查詢服務的timestamp簽名為例
# 是
seleniumwire 不是 selenium
import time
from seleniumwire import webdriver
driver = 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` attribute
for 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/      


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM