访问Request url后如何访问Payload

问题描述 投票:0回答:1

通过Python语言中的Selenium,我正在测试网站,我能够访问请求的链接,并且我想访问有效负载。所附图像显示 在此输入图片描述

driver = webdriver.Chrome(options=option)

driver.get("https://www.example.com")

network_entries = driver.execute_script(
    "return window.performance.getEntriesByType('resource');")

       
for entry in network_entries:
    target_url = entry['name']
    if("http://fonts.googleapis.com/css?family=Open" in target_url):
        

        print("URL:", target_url)
        # need print payload !!
        #print("PAYLOAD:", payload)

我想访问并打印有效负载中的内容,,如附图所示 –

javascript python selenium-webdriver networking request
1个回答
0
投票

我认为您正在使用 GET 请求。

-> 使用 driver.post("https://www.example.com")

© www.soinside.com 2019 - 2024. All rights reserved.