cross-browser testing platform
automate away your QA
Get started now:
write a test
run a test
Just write a simple javascript test...
robot : ~ $ cat > test.js <<EOF
var test = require('testling');

test('json parse', function (t) {
    t.deepEqual(JSON.parse('[1,2]'), [1,2]);
    t.end();
});

EOF
robot : ~ $
... then run your test on our browsers!
robot : ~ $ curl -sSNT test.js \
  testling.com/?browsers=iexplore/7.0,iexplore/8.0,chrome/13.0
Bundling....  done

iexplore/7.0        0/1    0 % ok
  Error: 'JSON' is undefined
    at [anonymous]() in /test.js : line: 4, column: 5
    at [anonymous]() in /test.js : line: 3, column: 29
    at test() in /test.js : line: 3, column: 1

  > t.deepEqual(JSON.parse('[1,2]'), [1,2]);

iexplore/8.0        1/1  100 % ok
chrome/13.0         1/1  100 % ok

total               2/3   66 % ok
robot : ~ $
Try running your own test.js with this command right now!
Detect broken code before you deploy.
No more emails from users in the middle of the night because some developer slipped in Object.keys() and broke the site in IE8.
Iterate faster.
Once the tests pass, deploy it! No more slow and error-prone manual verification of javascript functionality across all the browsers. Don't waste time on regressions for bugs you've already fixed.
Hiring good QA folks is hard.
Use the frontend developers you already have to write tests in a language they already know!
We run the browsers.
We run real browsers on real windows desktops on our servers. When you submit a request we run your code in the selected browsers and stream the results back in realtime. See the list of browsers that we run.
Pricing:
Each month you are allotted minutes based on your plan. You only spend minutes as your tests run. Team plans share the same pool of minutes.
free
30 minutes
$0 / month
1 account
developer
200 minutes
$20 / month
1 account
small team
2500 minutes
$300 / month
3 accounts
medium team
5000 minutes
$500 / month
5 accounts
large team
10000 minutes
$900 / month
10 accounts
dedicated
---
---
All paid plans include unlimited interactive browserling usage.
All team plans include the ability to run up to 4 tests at once per account.
To sign up for a plan, create a browserling account,
then upgrade your account from the account page.