This topic explains how to use SOAtest to record, play back, and validate web pages as they are displayed on specific  mobile devices. 

In this section:

About SOAtest’s Mobile Interface Testing

You can use SOAtest to record, play back, and validate web pages as they are displayed on specific  mobile devices. This is done by having SOAtest pretend to be the desired mobile device (by altering SOAtest’s user agent) so that the server sends the desktop browser the appropriate mobile version of the web application. For instance, if SOAtest identifies itself as an Android device, it might access a travel site’s web page as follows:



You can emulate any browser by entering the appropriate user agent, but the browser used for playback must be either Firefox or Chrome browser using the legacy engine.

Configuring User Agents

To configure SOAtest to access mobile interfaces:

  1. For each mobile interface you want to test, configure one Extension tool to use the appropriate user agent. This is done by setting the system property soatest.useragent.override to the appropriate user agent. See Sample Configurations for details.
  2. Configure one Extension tool to clear any mobile device user agent settings. This is done by setting the system property soatest.useragent.override to an empty string. For example, here is a Jython script that clears mobile device user agent settings:

from java.lang import *

def setToDefault():

     System.setProperty("soatest.useragent.override", "");


Setting User Agents

After you have these Extension tools configured, use them as follows:

Note that when you update the user agent by running an Extension tool, the user agent settings will persist as long as SOAtest is open or until you run an Extension tool that sets it back to default. These settings will not persist when you close SOAtest.

Tips

Sample Configurations

The following are sample Jython scripts for some common mobile devices. You access the interface shown to any mobile device; just use the appropriate user agent.

IPhone

from java.lang import *

def setToMobile():

    System.setProperty("soatest.useragent.override", "Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/ 528.16");

iPad

from java.lang import *

def setToDefault():

    System.setProperty("soatest.useragent.override", "Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/ 531.21.10");

Android

from java.lang import *

def setToDefault():

    System.setProperty("soatest.useragent.override", "Mozilla/5.0 (Linux; U; Android 2.1-update1; de-de; HTC Desire 1.19.161.5 Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17");

Blackberry

from java.lang import *

def setToDefault():

    System.setProperty("soatest.useragent.override", "BlackBerry8700/4.1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1");

Windows Phone 7

from java.lang import *

def setToDefault():

    System.setProperty("soatest.useragent.override", "Mozilla/4.0 (compatible; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; SAMSUNG; Taylor)");