点击按钮后如何使用selenium python拦截get-request?

iaqfqrcu  于 2023-01-08  发布在  Python
关注(0)|答案(2)|浏览(158)

我想通过编程方式获取点击“play audio”按钮后chrome devtools(network)中出现的get-request,Get-request将进入包含音频源的页面,如何在使用selenium的python上实现这一点?x1c 0d1x

jdg4fx2g

jdg4fx2g1#

在当前版本下,Selenium不可能实现这一点。你可以在similar question下找到更多信息。如果你不需要与任何javascript交互,你可以用requests实现这一点。

guicsvcw

guicsvcw2#

可以使用Chrome-Developer-Protocoll进行请求拦截。

driver.execute_cdp_cmd('',{})

有关https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-continueInterceptedRequest语法和用法,请参见www.example.com。

相关问题