0

I want to test if the webpage is making a HTTP POST request after fill and submit the form with Selenium webdriver. I can see it with Fiddler but is it possible to capture it from my main script?

P.S. There are some simular questions here, but they are 8 years old. Perhaps something has changed over the years.

Kosh
  • 684
  • 1
  • 4
  • 18

1 Answers1

1

you can check performance (network) logs via google chrome.

SO link: https://stackoverflow.com/a/27644635/3574726
documentation: https://sites.google.com/a/chromium.org/chromedriver/logging/performance-log

and parse logs to find if needed POST is present there

olli_kahn
  • 157
  • 6