SeeTest Client - GetInstalledApplications
Please note that this tool is classified as a Legacy tool. We recommend transitioning to our updated solutions to maintain optimal performance and security in your workflows. For more information on this matter, please reach out to technical support .
GetInstalledApplications()
Description
Return a list of applications installed on the device.
Parameters
No parameters
Usage
The following table describes the meaning of each element in the output list depending on platform:
OS | Content |
---|---|
Android | Package Name |
iOS | Bundle Id |
Note: This command may be called only if you have set an active device (for example, using either SeeTest Client - SetDevice or SeeTest Client - WaitForDevice ).
We will run the command on iPhone 6 device to get a string of all applications on the device
Code Examples
Java Example
String str0 = client.getInstalledApplications();
C# Example Expand source
string str0 = client.GetInstalledApplications();
VBScript Example Expand source
str0 = client.GetInstalledApplications ( )
Report
Python Example Expand source
var0 = self.client.getInstalledApplications()
Perl Example Expand source
my $str0 = $client->getInstalledApplications();