I want to programmatically get a get-request that appears in chrome devtools(network) after clicking on the "play audio" button. Get-request will enter the page with the audio source.
How can this be implemented on python using selenium ?
Asked
Active
Viewed 2,781 times
0

Moshe Slavin
- 5,127
- 5
- 23
- 38

Roman
- 41
- 1
- 7
2 Answers
1
It's not possible with Selenium under the current build. You can find more information under this similar question. You can achieve it with requests if you don't have to interact with any javascript.

NoSplitSherlock
- 605
- 4
- 19
0
Possible using request interception with Chrome-Developer-Protocoll.
Have a look at https://stackoverflow.com/a/75067388/20443541

kaliiiiiiiii
- 925
- 1
- 2
- 21