Hi
Using LR 11.52, tru client protocol:
I am using the Utils.addAutoFilter function to exclude certain calls while I'm running a performance test on our customer site. Things like Google analytics and various external scripts that are running on the page, but are not relevant to my test, or could inflluence the results.
I addded an evaluate javascript block before I open the page, containing the function like this:
Utils.addAutoFilter("http://www.google-analytics.com", false);
Utils.addAutoFilter("https://www.google-analytics.com", false);
Twoo things about this.
1. When I set the fllag to TRUE, the entire site seems to be blocked, and not just the calls too those sites I want to exclude. Is that a flaw in the implementation of the API by HP, or something else?
2. Is it enough to have this call once, or should I repeat it every time I follow a link to a different part of the site?
Hope somebody can shine some light on this...