Skip to content
Advertisement

Using Selenium how to get network request [closed]

I want to take all the network requests using selenium. I am not getting any way to find this solution if anyone can suggest to me or provide a code or library that would be appreciated.

This is my code:

JavaScript

Network Request

Advertisement

Answer

Not exactly open by dev tools but found some network, performance and other results.

Yes you can do that using JavascriptExecutor

Below Code will give you all performance, network etc entries:-

JavaScript

OR Below Code will give you specific performance entries:-

JavaScript

The first code retrun network return network;" because of this JS tag. You can remove JS code of entity which you don’t require

The second code return perfromance

Hope it will help you 🙂

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement