can someone come across similar testing and can help

Task: You need to catch requests that leave the site when performing any actions (click on a link, click on a link, fill out a form, etc.). The parameters of these requests contain a lot of analytical information that needs to be checked. Tell me, how can I get rekvests that leave the site with the help of a web driver? Perhaps there are some other utilities? Can you connect a feed that will catch these requests? But tests should remain parallel.

    1 answer 1

    SeleniumWebDriver is not intended for this. It is designed to test the Web UI in the "real conditions" of the end user.

    In order to test rekvesta you need a tool with the setting of a local proxy. The local proxy mediates between browser requests and the Internet and can log each request. Examples of this functionality can be called Charles or Fiddler ... Or the same WireShark . But I'm not sure that these are exactly the tools you need, because I don’t know how they have a connection to programming languages, in particular c #.

    But what I know for sure is that what you are definitely not suitable for this task is Selenium. And should not be approached, even in theory.