Legacy | Built-in personas

There are five different, ready-to use personas. See the detailed table below for their unique capabilities.

Existing tests can be executed across the set of personas. The personas can be parameterized and run utilizing common continuous integration servers, such as Jenkins, or test execution managers, such as TestNG.

Persona JSON file

A persona is a set of capabilities stored in the format of a JSON file located in the Perfecto CQ Lab repository. The pre-defined persona JSON files are located in PUBLIC:Personas folder (for example: PUBLIC:Personas/Georgia.json).

Copy
Example Persona JSON file
{
    "settings":{
        "windTunnelLocationAddress":"New York, NY",
        "windTunnelBackgroundRunningApps":"American Airlines,Twitter,Outlook,Marriott,BofA",
        "windTunnelVNetwork":"4G LTE Poor",
        "windTunnelOrientation":"landscape"        },
    "properties":{
        "description":"Corporate Road Warrior, Age 47",
        "name":"Georgia",
        "image":"PUBLIC:/Personas/Georgia.png"},
        "device":{
            "model":"iPhone-6S||iPad Mini 4"        }
}

Use an existing persona

To set a persona, use the windTunnelPersona capability.

Copy

Java example

capabilities.setCapability("windTunnelPersona", "Georgia");
Copy

C# example

capabilities.SetCapability("windTunnelPersona", "Georgia");

Tailor a persona

Tailoring an existing persona with specific values can be done by defining new capability values to override those that have already been defined.

** A complete list of all available capabilities can be found here.

Copy

Java example

//Set the persona
capabilities.setCapability("windTunnelPersona", "Georgia");

//Add network conditions
// for list of available network conditions see https://community.perfectomobile.com/posts/1002243
capabilities.setCapability("windTunnelVNetwork", "3.5G HSPA Average");

//Add location EITHER by an address or latitude and longitude coordinates
//By latitude longitude coordinates:
//capabilities.setCapability("windTunnelLocation", "-33.856975,151.215770");

//By Address (you can add street number and country if needed):
capabilities.setCapability("windTunnelLocationAddress", "New York,NY");

//Set orientation to landscape and portrait
capabilities.setCapability("windTunnelOrientation", "portrait");

//List the apps running in the background
capabilities.setCapability("windTunnelBackgroundRunningApps", "Candy Crush Saga");
Note:

For C#, use capabilities.SetCapability() in place of capabilities.setCapability().