Mobile General Actions
Mobile.SwitchApp
This action launches new native/hybrid mobile Android or iOS application to which you want to switch from the already launched native/hybrid mobile application.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
PackageName | Enter the package name of the Android app or bundle ID of the iOS app. | No | String |
ActivityName | Enter the activity name of the Android app. For iOS, enter as Dummy Activity Name. | No | String |
Example:
Mobile.SwitchApp "com.app.package" "com.app.package.MainActivity"
Mobile.PressBackButton
This action taps back button on the Mobile device.
This action is supported for Android only.
This action does not have any parameter.
Example:
Mobile.PressBackButton
Mobile.StoreWebViewHandle
This action stores the web view handle under the specified key. The key value can be retrieved using the key name.
Input Parameters:
ParameterName | Parameter Description | Mandatory | Data Type |
---|---|---|---|
key | Enter the key under which you want to store the web view handle. | Yes | String |
Example:
Mobile.StoreWebViewHandle "Key"
Mobile.SelectWebView
This action selects the web view present in the current page hybrid app. If key is provided (by using StoreWebViewHandle action), system selects the webview specified in key. If key is not provided, default webview will be selected.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
Key | enter the key used in the action "StoreWebViewHandle". | No | String |
Example:
Mobile.SelectWebView "Key"
Mobile.SelectNativeContext
This action can be used to select native context from the hybrid app.
This action does not have any parameter.
Example:
Mobile.SelectNativeContext
Mobile.SelectWebViewUsingURL
This action selects the web view using the URL or pattern specified in the parameters.
Input Parameters:
ParameterName | Parameter Description | Mandatory | Data Type |
---|---|---|---|
URL | Enter the URL to open. | No | String |
IsURLPattern | Specify whether the URL is patterned or not. | No | Boolean |
Example:
Mobile.SelectWebviewUsingURL "www.google.com" "False"
Mobile.PressKeys
This action presses the specified keys using the mobile keyboard.
This action can be used when working with Android applications.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
keyName | Enter the key to be pressed. For more information, click here. | Yes | String |
modifierKeyName | Enter Modifier (Meta State) key to press. Generally used for combination of keys such as Shift, Ctrl, and so on. For more information, click here. | No | String |
Example:
Mobile.Presskeys “F”
Mobile.Presskeys “CAP_LOCKED”
Mobile.Swipe
This action performs swipe based on the coordinates provided in the parameters.
Input Parameters:
ParameterName | Parameter Description | Mandatory | Data Type |
---|---|---|---|
startX | Enter the starting point in x-axis from where you want to start the swipe. | Yes | String |
startY | Enter the starting point in y-axis from where you want to start the swipe. | Yes | String |
endX | Enter the starting point in x-axis from where you want to stop the swipe. | Yes | String |
endY | Enter the starting point in y-axis from where you want to stop the swipe. | Yes | String |
duration | Enter the duration seconds for the action to perform | No | String |
Example:
Mobile.Swipe "100" "123" "145" "121" "1"
Mobile.OpenNotification
A notification is a message at the device level against the application and stored in the notification panel.
This action pulls down the notification panel on Android and iOS device. It does not have any parameters.
Example:
Mobile.OpenNotification
Mobile.VerifyToast
A toast provides simple feedback about an operation in a small popup.
This action verifies whether the toast message matches the text provided in the action parameter. The match can either be a partial or an exact match. Currently, this action is supported only on the Android platform.
This parameter is mandatory.
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
matchText | The toast message, which is expected to display. | Yes | String |
Example:
Mobile.VerifyToast "Success"