Chrome developer tools are really great when it comes to debugging a web application, but can they be run programmatically? I googled around on a topic, but most of the things I can find seem to be a bit out of date.
I played quite a lot with jsPerf and it works great in small tests. I would like to achieve the same results, but instead I run a real web application in a real browser.
Ideally, a test suite can handle automatic interaction with a web application (button clicks, sending text, etc.). I would also like to be able to insert flags into the code, run the code a certain number of times, and then analyze the logs, etc., so that the flags can retrieve the exact timestamps.
Can this be done?
source
share