<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Uji Mobile</title>
    <description>The latest articles on DEV Community by Uji Mobile (@ujimobile).</description>
    <link>https://dev.to/ujimobile</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4073422%2Fdcc91c41-fbd9-4835-9a3e-92084c735d54.jpg</url>
      <title>DEV Community: Uji Mobile</title>
      <link>https://dev.to/ujimobile</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ujimobile"/>
    <language>en</language>
    <item>
      <title>How We Test Mobile Web Performance on Real Android and iPhone Devices</title>
      <dc:creator>Uji Mobile</dc:creator>
      <pubDate>Tue, 11 Aug 2026 16:38:32 +0000</pubDate>
      <link>https://dev.to/ujimobile/how-we-test-mobile-web-performance-on-real-android-and-iphone-devices-49o5</link>
      <guid>https://dev.to/ujimobile/how-we-test-mobile-web-performance-on-real-android-and-iphone-devices-49o5</guid>
      <description>&lt;p&gt;Testing a mobile website from a desktop browser is useful, but it does not tell the whole story.&lt;/p&gt;

&lt;p&gt;A page can look responsive in DevTools and still feel slow, cramped, or difficult to use on a real phone.&lt;/p&gt;

&lt;p&gt;For our mobile testing workflow, we treat Android, iPhone Safari, network conditions, and small-screen interaction as separate parts of the test.&lt;/p&gt;

&lt;p&gt;The goal is not simply to ask:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Does the page load?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The more useful question is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Can a real user actually use it comfortably on a phone?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Start with real devices
&lt;/h2&gt;

&lt;p&gt;Desktop emulation is convenient during development, but real phones expose problems that are easy to miss.&lt;/p&gt;

&lt;p&gt;A real device gives us a better view of things such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;actual viewport behaviour&lt;/li&gt;
&lt;li&gt;browser UI taking up screen space&lt;/li&gt;
&lt;li&gt;touch target size&lt;/li&gt;
&lt;li&gt;keyboard behaviour&lt;/li&gt;
&lt;li&gt;scrolling&lt;/li&gt;
&lt;li&gt;fixed headers and bottom bars&lt;/li&gt;
&lt;li&gt;image loading&lt;/li&gt;
&lt;li&gt;browser-specific rendering&lt;/li&gt;
&lt;li&gt;transitions between pages&lt;/li&gt;
&lt;li&gt;installation or download flows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For Android testing, Chrome is usually one of the first browsers we check.&lt;/p&gt;

&lt;p&gt;For iPhone testing, Safari deserves its own test rather than being treated as “the same thing, but on iOS.”&lt;/p&gt;

&lt;p&gt;The two environments can behave differently even when they open the same URL.&lt;/p&gt;

&lt;h2&gt;
  
  
  Loading time is more than first paint
&lt;/h2&gt;

&lt;p&gt;One mistake in mobile testing is measuring only when something first appears on screen.&lt;/p&gt;

&lt;p&gt;That number can be useful, but it does not always represent when the page is actually usable.&lt;/p&gt;

&lt;p&gt;For example, a page may display the logo and background quickly while:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;navigation is still loading&lt;/li&gt;
&lt;li&gt;buttons are not yet responsive&lt;/li&gt;
&lt;li&gt;images are still blank&lt;/li&gt;
&lt;li&gt;a content list is incomplete&lt;/li&gt;
&lt;li&gt;JavaScript is still initializing&lt;/li&gt;
&lt;li&gt;the next page cannot yet be opened&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So we separate “something appeared” from “the user can start using the page.”&lt;/p&gt;

&lt;p&gt;When testing manually, we usually pay attention to three moments:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;When the page first becomes visually recognizable&lt;/li&gt;
&lt;li&gt;When the main controls become usable&lt;/li&gt;
&lt;li&gt;When the important content has finished loading&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;These three moments can feel very different on a mobile connection.&lt;/p&gt;

&lt;h2&gt;
  
  
  Test on normal 4G, not only fast Wi-Fi
&lt;/h2&gt;

&lt;p&gt;A mobile experience should not be judged only from a stable office connection.&lt;/p&gt;

&lt;p&gt;Users may open a site:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;outdoors&lt;/li&gt;
&lt;li&gt;while travelling&lt;/li&gt;
&lt;li&gt;between areas of different coverage&lt;/li&gt;
&lt;li&gt;on congested mobile networks&lt;/li&gt;
&lt;li&gt;with fluctuating signal quality&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A page that feels instant on Wi-Fi can feel very different when the connection becomes slower.&lt;/p&gt;

&lt;p&gt;When testing on 4G, we look at more than the total loading time.&lt;/p&gt;

&lt;p&gt;We also watch for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;images appearing late&lt;/li&gt;
&lt;li&gt;layout shifting while assets load&lt;/li&gt;
&lt;li&gt;blank spaces&lt;/li&gt;
&lt;li&gt;delayed menu response&lt;/li&gt;
&lt;li&gt;buttons that appear active but do nothing&lt;/li&gt;
&lt;li&gt;repeated taps caused by slow feedback&lt;/li&gt;
&lt;li&gt;pages loading twice after impatient tapping&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This last point is surprisingly important.&lt;/p&gt;

&lt;p&gt;When a button takes too long to respond, users often tap it again because they are not sure whether the first tap was registered.&lt;/p&gt;

&lt;p&gt;That can create duplicate navigation or unexpected behaviour.&lt;/p&gt;

&lt;h2&gt;
  
  
  Small screens reveal navigation problems quickly
&lt;/h2&gt;

&lt;p&gt;A desktop navigation bar has space.&lt;/p&gt;

&lt;p&gt;A phone does not.&lt;/p&gt;

&lt;p&gt;On a small screen, every extra step becomes more noticeable.&lt;/p&gt;

&lt;p&gt;We check:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;whether the main menu is easy to find&lt;/li&gt;
&lt;li&gt;whether important buttons are large enough&lt;/li&gt;
&lt;li&gt;whether text remains readable&lt;/li&gt;
&lt;li&gt;whether content feels overcrowded&lt;/li&gt;
&lt;li&gt;whether search is easy to access&lt;/li&gt;
&lt;li&gt;whether the user has to scroll too much before reaching important sections&lt;/li&gt;
&lt;li&gt;whether fixed UI elements cover content&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A responsive layout is not automatically a good mobile layout.&lt;/p&gt;

&lt;p&gt;It is possible for every element to fit inside the viewport and still create a frustrating experience.&lt;/p&gt;

&lt;p&gt;Mobile usability depends on how quickly a user can understand what to do next.&lt;/p&gt;

&lt;h2&gt;
  
  
  Android app and mobile browser should be tested separately
&lt;/h2&gt;

&lt;p&gt;Some services provide an Android app or APK in addition to a mobile website.&lt;/p&gt;

&lt;p&gt;We do not treat the existence of an app as proof that the mobile experience is better.&lt;/p&gt;

&lt;p&gt;If an APK is available, useful things to record include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;file size&lt;/li&gt;
&lt;li&gt;download source&lt;/li&gt;
&lt;li&gt;installation steps&lt;/li&gt;
&lt;li&gt;whether unusual permissions are requested&lt;/li&gt;
&lt;li&gt;whether installation completes normally&lt;/li&gt;
&lt;li&gt;whether the app opens correctly after installation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then we compare that experience with simply opening the same service in Chrome.&lt;/p&gt;

&lt;p&gt;Sometimes the browser version is more practical because there is nothing to install.&lt;/p&gt;

&lt;p&gt;In other cases, the installed app may provide a more consistent experience.&lt;/p&gt;

&lt;p&gt;The important part is to test both rather than assuming one is better.&lt;/p&gt;

&lt;h2&gt;
  
  
  Safari needs its own workflow
&lt;/h2&gt;

&lt;p&gt;iPhone users often access mobile services through Safari.&lt;/p&gt;

&lt;p&gt;So we check Safari separately.&lt;/p&gt;

&lt;p&gt;Typical things we look at include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;registration forms&lt;/li&gt;
&lt;li&gt;login fields&lt;/li&gt;
&lt;li&gt;navigation&lt;/li&gt;
&lt;li&gt;touch behaviour&lt;/li&gt;
&lt;li&gt;page transitions&lt;/li&gt;
&lt;li&gt;browser keyboard behaviour&lt;/li&gt;
&lt;li&gt;fixed headers&lt;/li&gt;
&lt;li&gt;buttons near the bottom of the screen&lt;/li&gt;
&lt;li&gt;Home Screen support where available&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We also avoid assuming that something tested on Android works identically on iPhone.&lt;/p&gt;

&lt;p&gt;If a function was only tested on Android, we record it as an Android result.&lt;/p&gt;

&lt;p&gt;If the iPhone flow could not be completed, it should not be presented as though it was verified.&lt;/p&gt;

&lt;h2&gt;
  
  
  Do not guess what happens after login
&lt;/h2&gt;

&lt;p&gt;Another useful rule is simple:&lt;/p&gt;

&lt;p&gt;If we did not test it, we do not treat it as a test result.&lt;/p&gt;

&lt;p&gt;Some areas of a mobile service may only become available after:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;creating an account&lt;/li&gt;
&lt;li&gt;verifying a phone number&lt;/li&gt;
&lt;li&gt;logging in&lt;/li&gt;
&lt;li&gt;meeting another access requirement&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In that situation, testing only the public homepage is not enough to make conclusions about the logged-in interface.&lt;/p&gt;

&lt;p&gt;We separate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;tested&lt;/li&gt;
&lt;li&gt;partially tested&lt;/li&gt;
&lt;li&gt;not tested&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This makes comparisons more useful later.&lt;/p&gt;

&lt;h2&gt;
  
  
  Record the environment
&lt;/h2&gt;

&lt;p&gt;A performance number without context is not very helpful.&lt;/p&gt;

&lt;p&gt;When documenting a mobile test, we try to keep basic environment information together with the result.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
text
Device: Android phone
Browser: Chrome
Network: 4G
Test type: mobile web
Area checked: homepage, navigation, search
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>mobile</category>
      <category>performance</category>
      <category>testing</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
