I am in need of a way to verify that the HTTP request results, which are only in JSON format, are correct. How can I go about doing this? Are there alternative methods?
describe('test', function() {
it('retrieve JSON data', function() {
browser.get('http://.../consumer/2/indexinfo');
});
});
I am struggling with this because the result is in JSON and does not utilize the element
tag.