On this Page:
Table of Contents |
---|
SFDC general actions denote those actions for which objects are not needed for execution.
SFDC objects do not support the following features:
|
SFDC.ClickButton
This action clicks the specified button.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
buttonName | Enter the button name you want to click. | Yes | String |
Example:
ClickButton "Accounts Check"
SFDC.ClickTab
This action clicks the specified tab.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
tabName | Enter the tab name you want to click. | Yes | String |
Example:
ClickTab "Accounts Check"
SFDC.CreateNewEntity
This action creates a new entity.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
tabName | Enter the tab name you want to click based on the label name. | Yes | String |
Example:
CreateNewEntity "Accounts Check"
SFDC.SelectTabs
This action selects multiple tabs.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
tabName | Enter the tab names you want to select. | Yes | String |
Example:
SelectTabs "Accounts Check"
SFDC.SortColumnData
This action sorts the column data.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
columnName | Enter the column name you want to sort. | Yes | String |
sortOrder | Specify the sorting order, i.e., Ascending or Descending. | Yes | String |
Example:
SortColumnData "Accounts Check"
SFDC.SwitchView
This action switches to another view.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
viewName | Enter the respective SFDC view to which you want to switch. The values are lightning and classic. | Yes | String |
Example:
SwitchView "Accounts Check"
SFDC.SwitchUser
This action switches to another user.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
userName | Enter the username of the user to which you want to switch. | Yes | String |
Example:
SwitchUser "Accounts Check"
SFDC.WaitForLabel
This action waits for the label to be visible.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
labelName | Enter a unique object name for which you want to check the visibility. | Yes | String |
maxTimeOutInSeconds | Enter the maximum timeout in seconds up to which you want the script to wait for a label to be visible. | Yes | String |
Example:
WaitForLabel "Accounts Check"
SFDC.SwitchToTab
This action switches to another tab.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
tabName | Enter the tab name to which you want to switch. | Yes | String |
Example:
SwitchToTab "Accounts Check"
SFDC.SwitchApp
This action switches to another Salesforce app.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
appName | Enter the app name to which you want to switch. | Yes | String |
Example:
SwitchApp "Sales"
SFDC.Logout
This action allows you to log out from the SFDC application.
This action does not contain any parameters.Input Parameters:
Example:
Logout Logout