You can capture network traffic with Selenium and then try to get what you need for this
Selenium s = new DefaultSelenium(...); s.start("captureNetworkTraffic=true"); s.open("http://www.google.com"); String traffic = s.captureNetworkTraffic("json");
And then make your statements by finding what you want in traffic.
source share