Browser testing sucks, it's time to start doing it right.
1–10 of 18 posts
Re: Browser testing sucks, it's time to start doing it right.
#2Re: Browser testing sucks, it's time to start doing it right.
#3JavaScript also makes creating a very clean testing-focused DSL easy.
I'm hoping to open source the project soon. If anyone would like to know more give me a shout (@andrewdavey).
Re: Browser testing sucks, it's time to start doing it right.
#4tldr; "I hate browser testing. Did I fix the problems? No. I started writing opinionated software though, because my opinion should matter. I wrote it in Ruby because I know Ruby."
Straight off, no on at Sauce Labs hates browser testing, that's just a stupid thing to posit.
Test::Right is a really cool mental model of testing, and it's going to make people's lives better. Robust tests, parallelism, immediate cross-browser compatibility (this is an issue people without a lot of experience don't really understand), a lot of cool shit.
I love the promise that if I write my tests in this pattern/framework, my tests will always be good. It's not there yet, but it's still damned cool.
We also have several volunteers who're excited to port this to other languages, but we started with ruby because it's a fertile playground, and the important piece here is the pattern, not the language/framework itself. It'll end up being the flagship browser testing framework de facto, but that's not the goal here.
I played a big part in putting some pieces of Test::Right together, full disclosure.
Re: Browser testing sucks, it's time to start doing it right.
#5I see a big problems in web testing caused trying to test drive from outside of the browser. I'm currently working on a solution that has tests written in javascript that run inside the browser. The test runner puts your web app into an iframe, so the test code can use jQuery, for example, to easily automate and assert over the UI. JavaScript also makes creating a very clean testing-focused DSL easy. I'm hoping to op…
That said, it's not the important part. Selenium (and watir, windmill, etc.) is an execution tool, it doesn't help you avoid some very, very large pitfalls waiting for you down the road. Too often your tests are tightly coupled with the dom, data and selectors are strewn all about, you have manual pauses and timeouts set by someone who left years ago, and you have so many that the whole thing takes two weeks to run (yes, I've seen this a number of times).
Basically, I don't care about the tool to execute the tests anymore. They'll all become interchangeable with Selenium 2 anyway. The much more valuable piece here is in creating tests that are maintainable and a joy to work with.
Certainly best of luck, please be sure to share you experiences and insights! There's always more to be learned.
Re: Browser testing sucks, it's time to start doing it right.
#6tldr; "I hate browser testing. Did I fix the problems? No. I started writing opinionated software though, because my opinion should matter. I wrote it in Ruby because I know Ruby."
Hmm, that's not really a considered review. Straight off, no on at Sauce Labs hates browser testing, that's just a stupid thing to posit. Test::Right is a really cool mental model of testing, and it's going to make people's lives better . Robust tests, parallelism, immediate cross-browser compatibility (this is an issue people without a lot of experience don't really understand), a lot of cool shit. I love the promis…
Re: Browser testing sucks, it's time to start doing it right.
#7Earlier quoted context omitted.
Hmm, that's not really a considered review. Straight off, no on at Sauce Labs hates browser testing, that's just a stupid thing to posit. Test::Right is a really cool mental model of testing, and it's going to make people's lives better . Robust tests, parallelism, immediate cross-browser compatibility (this is an issue people without a lot of experience don't really understand), a lot of cool shit. I love the promis…
[deleted]
Re: Browser testing sucks, it's time to start doing it right.
#8tldr; "I hate browser testing. Did I fix the problems? No. I started writing opinionated software though, because my opinion should matter. I wrote it in Ruby because I know Ruby."
Re: Browser testing sucks, it's time to start doing it right.
#9I especially like the decoupling of intentions from mechanics. It lets us improve the mechanics without breaking or rewriting all the tests. Maybe the mechanics are implemented with JS DOM-traversal code, maybe it's CSS selectors, maybe it's SIKULI-like image recognition (http://sikuli.org/).
Looking forward to trying it.
Re: Browser testing sucks, it's time to start doing it right.
#10tldr; "I hate browser testing. Did I fix the problems? No. I started writing opinionated software though, because my opinion should matter. I wrote it in Ruby because I know Ruby."
Hmm, that's not really a considered review. Straight off, no on at Sauce Labs hates browser testing, that's just a stupid thing to posit. Test::Right is a really cool mental model of testing, and it's going to make people's lives better . Robust tests, parallelism, immediate cross-browser compatibility (this is an issue people without a lot of experience don't really understand), a lot of cool shit. I love the promis…
I like this a lot.