Can I do automated testing using the Chrome Developer Tools?

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?

+4
source share
1 answer

I don’t think I can automate using chrome devtools, but you can add a number of extensions to do test cases like this http://selenium-rc.openqa.org/

+2
source

All Articles