c00kiemonster
c00kiemonster

Reputation: 23361

Can I do automated-testing with Chrome Developer Tools?

Chrome Developer Tools are really great when it comes to debugging a web app, but can they be run programmatically somehow? I googled around on the topic, but most of the stuff I can find seem to be slightly outdated.

I have played around quite a bit with jsPerf, and it works really well in smaller tests. I'd like to achieve the same results, but running the real web app in a real browser instead.

Ideally the test suite can handle automated UI interaction with the web app (clicking buttons, submitting text, etc). I'd also like to be able to insert flags in the code, run through the code a given amount of times, and then parse logs etc for the flags to be able to extract the exact timestamps.

Is that possible to do?

Upvotes: 4

Views: 4818

Answers (1)

user474901
user474901

Reputation:

I don't think you Can I do automated with chrome devtools but you can add number of extension to make do the test jobs like this http://selenium-rc.openqa.org/

Upvotes: 2

Related Questions