Skip to content
/ .. /
Profiles










Profiles

Profiles can be configured so that phones can be addressed by multiple properties in test cases. Multiple profiles can be created. For information about installing and configuring multiple intaQt, refer to Running Multiple intaQt in Parallel.

The advantages of this include:

  • The test case remains readable as the potentially complicated criterion is not part of it.

  • The same criterion can be used from different test cases without copying it.

  • Allows for maintaining the definition of the criterion in a centralized location.

Syntax

1
2
3
4
5
Profiles {
    <profileName> {
        <property>    = <value>
    }
}

Parameters

  • profileName - The name assigned to the profile in the server.conf

  • property - Declares the profile's property

  • value - The value of the property

Example

1
2
3
4
5
6
Profiles {
    profileA {
        operator    = "operator1"
        mnp         = "abc"
    }
}