by softwareman on 5/22/14, 8:35 AM with 7 comments
Do you use any tools? If yes, how good are they?
by wnm on 5/22/14, 10:07 AM
In terms of testing, I use all the current tools that are available to web developers (automated tests for my javascript code with mocha[3], chrome developer tools for debugging, etc)
I do testing on an actual device as late as possible, when my app is actually already finished and well tested. In case I need to debug on the device there is remote debugging with chrome on android[4], which lets you debug your android app with chrome developer tools.
For automated integration tests there is also appium.io[5]. You can write integration tests and let them run for ios and android.
[0] http://phonegap.com/ [1] http://emberjs.com/ [2] https://developer.mozilla.org/en-US/docs/Tools/Responsive_De... [3] http://visionmedia.github.io/mocha/ [4] https://developer.chrome.com/devtools/docs/remote-debugging [5] http://appium.io/
by atox on 5/22/14, 2:39 PM
I'm getting more and more convinced that this is the only way to guarantee that your site/app will work perfectly on all of these phones and tablets.
Some emulators can be a pita to install (iOS emulator only works on OS X, windows phone emulator needs Visual Studio on Windows 8 on hardware that supports HyperV) and they're still not 100% consistent with what will happen on the real device.
by omgmog on 5/22/14, 9:08 AM
Having a range of devices at hand helps too.
by vktheitgirl on 5/23/14, 4:38 PM
I haven't tried this this but another suggestion I read somewhere is to go to Bestbuy and test it on as many devices as you can :)
by gspyrou on 5/30/14, 7:20 AM
by petervandijck on 5/23/14, 11:46 AM
by qgaultier on 5/23/14, 5:22 PM