[WebAudits] How to test Front-end performance bypassing user authentication of web?
- 5 years ago
Hi,
Possible solution depends on the authentication type used for the tested application.
In the simplest case of basic authentication you may try just http://<login>:<password>@10.241.36.101:3001/print-room/jobs.
In case of other authentication types that are based on the constant cookie/token, you may try to get some page by providing authentication data on the login page and get obtained cookie/token.
Maybe, this even could be done via plain http requests without the necessity to follow the login procedure via UI using TestComplete. Try to record the traffic and investigate it.
Then you may use some pass-through proxy (Fiddler, for example) and set it up so that it appends the obtained cookie/token to all requests sent to your test host (10.241.36.101:3001).
I am afraid that I don't have any good idea at the moment for the case of fully dynamic cookies/tokens that are new for every navigated page.