Is the Android Emulator browser suitable and reliable for testing HTML / Javascript applications?

I am developing an HTML / Javascript application designed to run on an Android device running Froyo (2.2). Assuming I don’t need multitouch features, will the emulator browser be a reliable means of debugging HTML, CSS and Javascript? Or is it possible that I would work out all the errors in the emulator, but find that the actual device handles things differently?

+3
source share
1 answer

The base code for WebKit is identical in the emulator and the actual device. The only thing you need to worry about is the other components between them (for example, some media have proxies. I had problems with T-Mobile where it just sent me an outdated cached version of the site, rather than even accessing the site) .

+2
source

Source: https://habr.com/ru/post/1754441/


All Articles