通过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)
我想访问并打印有效负载中的内容,,如附图所示 –
我认为您正在使用 GET 请求。
-> 使用 driver.post("https://www.example.com")