Skip to main content

SeeTestAutomation - Uninstall

info

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 .

boolean uninstall(app)

Description

Uninstall the application from the device.

Parameters

Usage

Scenario: We will use the 'Uninstall' command in order to uninstall the EriBank application during runtime.

Parameters:

  • Application: will be set to "com.experitest.ExperiBank"

Code Examples

Java Example

if(client.uninstall("com.experitest.ExperiBank")){
// If statement
}

C# Example Expand source

if(client.Uninstall("com.experitest.ExperiBank")){
// If statement
}

VBScript Example Expand source

If StrComp (client.Uninstall ( "com.experitest.ExperiBank" ), "True") = 0 Then
Report
'If statement
Else
Report
End If

Python Example Expand source

if(self.client.uninstall("com.experitest.ExperiBank")):
# If statement
pass

Perl Example Expand source

if($client->uninstall("com.experitest.ExperiBank")){
# If statement
}