Automation V3: Creating Custom Test Steps
Custom test steps are a way to extend the standard features of Provar by writing your own logic in the form of a Test Step and invoke it easily across all test cases. For example, you can create a Custom Test Step to trigger an External ANT Task from a test case.
Creating a Custom Test Step
To create a Custom Test Step:Step 1: Navigate to the Files section and select Add a new custom test API from the + menu:
Step 2: Enter a Name, Title, and Summary. (Name is the name of the Java class, whereas Title is the display name of the Test Step.) Then click the Finish button:
Step 3: Open the newly created .java file located in the Custom Test Steps section by double-clicking on the file:
Step 4: Locate the following section in the file and add your own logic in Java:
Step 5: Click Save. To use the new Test Step, locate it in the Test Palette and click and drag it into the Test Case.
Example 1: Trigger External ANT Tasks
This example shows how to create a Custom Test Step for triggering an external ANT Task. An everyday use case for this is to trigger an ANT task to deploy a package in a Salesforce environment, followed by test data setup steps.
Step 1: Download Apache ANT jar and ANT Launcher jar and import them to the Project using the steps described in importing and executing JAR files.
Step 2: Navigate to the Files section and select Add a new custom test step from the + menu, name your custom test step “RunANTTASK.”
Step 3: Replace the code with the following:
package customapis; import java.io.Console; import java.io.File; import java.util.logging.Logger; import org.apache.tools.ant.BuildEvent; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.BuildListener; import org.apache.tools.ant.DefaultLogger; import org.apache.tools.ant.Project; import org.apache.tools.ant.ProjectHelper; import com.provar.core.model.base.api.ValueScope; import com.provar.core.testapi.ITestExecutionContext; import com.provar.core.testapi.annotations.TestApi; import com.provar.core.testapi.annotations.TestApiExecutor; import com.provar.core.testapi.annotations.TestApiParameter; import com.provar.core.testapi.annotations.TestApiParameterGroup; import com.provar.core.testapi.annotations.TestApiParameterGroups; import com.provar.core.testapi.annotations.TestExecutionContext; import com.provar.core.testapi.annotations.TestLogger; @TestApi( title="RunANTTask" , summary="" , remarks="" , iconBase="" , defaultApiGroups={"My Test APIs"} ) @TestApiParameterGroups(parameterGroups={ @TestApiParameterGroup(groupName="inputs", title="Inputs"), @TestApiParameterGroup(groupName="result", title="Result"), }) public class RunANTTask { @TestApiParameter(seq=1, summary="Path to ANT build file", remarks="", mandatory=true, parameterGroup="inputs") public String path; @TestApiParameter(seq=2, summary="Name of the ANT build file", remarks="", mandatory=true, parameterGroup="inputs") public String buildFileName; @TestApiParameter(seq=3, summary="Provide the name of the Target. Leave blank if you want default target to be picked", remarks="", mandatory=false, parameterGroup="inputs") public String targetName; @TestApiParameter(seq=10, summary="The name that the result will be stored under.", remarks="", mandatory=true, parameterGroup="result") public String isTaskSuccessful; @TestApiParameter(seq=11, summary="The lifespan of the result.", remarks="", mandatory=true, parameterGroup="result", defaultValue="Test") public ValueScope resultScope; /** * Used to write to the test execution log. */ @TestLogger public Logger testLogger; /** * Provides access to facilities, mainly to set and get variable values. */ @TestExecutionContext public ITestExecutionContext testExecutionContext; // Store the result (if appropriate). final String[] dummyResult = new String[1]; @TestApiExecutor public void execute() { File buildFile = new File(path, buildFileName); // Prepare Ant project Project project = new Project(); project.setUserProperty("ant.file", buildFile.getAbsolutePath()); DefaultLogger consoleLogger = new DefaultLogger(); consoleLogger.setErrorPrintStream(System.err); consoleLogger.setOutputPrintStream(System.out); consoleLogger.setMessageOutputLevel(Project.MSG_INFO); project.addBuildListener(consoleLogger); project.addBuildListener(new BuildListener() { @Override public void taskStarted(BuildEvent arg0) { // TODO Auto-generated method stub testLogger.info("=====Task Started====="); } @Override public void taskFinished(BuildEvent arg0) { // TODO Auto-generated method stub testLogger.info("=====Task Finished : " + arg0.getMessage() + "====="); } @Override public void buildStarted(BuildEvent arg0) { // TODO Auto-generated method stub testLogger.info("======Build started : " + arg0.getMessage() + "====="); } @Override public void buildFinished(BuildEvent arg0) { // TODO Auto-generated method stub if(arg0.getException() == null ) { testLogger.info("=====Build Successful====="); dummyResult[0] = "true"; } else { testLogger.info("=====Build Failed====="); dummyResult[0] = "false"; } } @Override public void messageLogged(BuildEvent arg0) { // TODO Auto-generated method stub testLogger.info(arg0.getMessage()); } @Override public void targetFinished(BuildEvent arg0) { // TODO Auto-generated method stub testLogger.info("=====Target finished : " + arg0.getMessage() + "====="); } @Override public void targetStarted(BuildEvent arg0) { // TODO Auto-generated method stub testLogger.info("=====Target started : " + arg0.getMessage() + "====="); } }); // Capture event for Ant script build start / stop / failure try { project.fireBuildStarted(); project.init(); ProjectHelper projectHelper = ProjectHelper.getProjectHelper(); project.addReference("ant.projectHelper", projectHelper); projectHelper.parse(project, buildFile); // If no target specified then default target will be executed. if(targetName != null) { project.executeTarget(targetName); } else { project.executeTarget(project.getDefaultTarget()); } project.fireBuildFinished(null); // testLogger.info(dummyResult[0]); } catch (BuildException buildException) { project.fireBuildFinished(buildException); throw new RuntimeException("!!! Unable to restart !!!", buildException); } finally { testExecutionContext.setValue(isTaskSuccessful, dummyResult[0], resultScope); } } }
Step 4: Create a new Test Case, then locate the new Custom Test Step in the Test Palette and click and drag it into the Test Case:
Step 5: Populate the following parameters:
- Path: The absolute path to the ANT build file
- Build File Name: Name of the ANT build file to be executed
- Target Name: Name of the Target that you need to execute. Provar will pick up the default Target if this is left blank.
After the ANT task is executed, it will give the result in a variable defined under Is Task Successful. This Custom Test Step will respond with an output of TRUE if executed successfully or FALSE if any error was encountered. The full ANT logs can be viewed in the Test Runner.
Types of parameters for Custom Test Steps
If you create a new Custom Test Step, Provar will provide several different parameter types, including string, Boolean, number, float, date, and list. You can use the default parameters provided or edit them per your needs. Parameters can be found in the Custom Test Step Java file and are annotated with @TestApiParameter. The following includes a summary of each parameter type and how they should be used.
seq= This defines a sequence of parameters in the Custom Test Step. Select a different seq for each parameter defined in the Custom Test Step.
Note: Your Test Step will produce an error if the same seq number is selected for different parameters belonging to the same group.
summary= A summary to describe the purpose of the parameter.
remarks= Additional remarks if any.
mandatory= Entries in this field should be true or false. This defines if the input field is mandatory or not.
parameterGroup= Describes which parameter group the parameter is associated with.
Type 1 – String
The following example shows a String parameter type.
@TestApiParameter(seq=1,
summary=”The first parameter’s summary.”,
remarks=””,
mandatory=true,
parameterGroup=”inputs”)
public String param1;
Note: Because it is marked as mandatory = true, The Param 1 is required message is displayed.
Type 2 – Boolean
The following highlights how Boolean syntax appears in Provar.
@TestApiParameter(seq=1,
summary=”The first parameter’s summary.”,
remarks=””,
mandatory=true,
parameterGroup=”inputs”)
public boolean param1;
Type 3 – Numbers (Integer)
The following example shows a number (integer) parameter type.
@TestApiParameter(seq=1,
summary=”The first parameter’s summary.”,
remarks=””,
mandatory=true,
parameterGroup=”inputs”)
public int param1;
Type 4 – Numbers (Float)
The following example shows a number (float) parameter type.
@TestApiParameter(seq=1,
summary=”The first parameter’s summary.”,
remarks=””,
mandatory=true,
parameterGroup=”inputs”)
public float param1;
Type 5 – Date
The following example shows a date parameter type.
@TestApiParameter(seq=1,
summary=”The first parameter’s summary.”,
remarks=””,
mandatory=true,
parameterGroup=”inputs”)
public Date param1;
Type 6 – List
The following example shows a list parameter type.
@TestApiParameter(seq=1,
summary=”The first parameter’s summary.”,
remarks=””,
mandatory=true,
parameterGroup=”inputs”)
public List param1;
Note: If you are using a list type parameter, make sure to import the following – import java.util.List;
- Provar Automation V2
- System Requirements
- Browser and Driver Recommendations
- Installing Provar Automation
- Updating Provar Automation
- Licensing Provar
- Granting Org Permissions to Provar Automation
- Optimizing Org and Connection Metadata Processing in Provar
- Using Provar Automation
- Understanding Provar’s Use of AI Service for Test Automation
- Provar Automation
- Creating a New Test Project
- Import Test Project from a File
- Import Test Project from a Remote Repository
- Import Test Project from Local Repository
- Commit a Local Test Project to Source Control
- Salesforce API Testing
- Behavior-Driven Development
- Consolidating Multiple Test Execution Reports
- Creating Test Cases
- Custom Table Mapping
- Functions
- Debugging Tests
- Defining a Namespace Prefix on a Connection
- Defining Proxy Settings
- Environment Management
- Exporting Test Cases into a PDF
- Exporting Test Projects
- Japanese Language Support
- Override Auto-Retry for Test Step
- Customize Browser Driver Location
- Mapping and Executing the Lightning Article Editor in Provar
- Managing Test Steps
- Namespace Org Testing
- NitroX
- Provar Test Builder
- ProvarDX
- Refresh and Recompile
- Reintroduction of CLI License Check
- Reload Org Cache
- Reporting
- Running Tests
- Searching Provar with Find Usages
- Secrets Management and Encryption
- Setup and Teardown Test Cases
- Tags and Service Level Agreements (SLAs)
- Test Cycles
- Test Data Generation
- Test Plans
- Testing Browser – Chrome Headless
- Testing Browser Options
- Tooltip Testing
- Using the Test Palette
- Using Custom APIs
- Callable Tests
- Data-Driven Testing
- Page Objects
- Block Locator Strategies
- Introduction to XPaths
- Creating an XPath
- JavaScript Locator Support
- Label Locator Strategies
- Maintaining Page Objects
- Mapping Non-Salesforce fields
- Page Object Operations
- ProvarX™
- Refresh and Reselect Field Locators in Test Builder
- Using Java Method Annotations for Custom Objects
- Applications Testing
- Database Testing
- Document Testing
- Email Testing
- Email Testing in Automation
- Email Testing Examples
- Gmail Connection in Automation with App Password
- App Configuration for Microsoft Connection in MS Portal for OAuth 2.0
- OAuth 2.0 Microsoft Exchange Email Connection
- Support for Existing MS OAuth Email Connection
- OAuth 2.0 MS Graph Email Connection
- Create a Connection for Office 365 GCC High
- Mobile Testing
- OrchestraCMS Testing
- Salesforce CPQ Testing
- ServiceMax Testing
- Skuid Testing
- Vlocity API Testing
- Webservices Testing
- Provar Manager
- How to Use Provar Manager
- Provar Manager Setup
- Provar Manager Integrations
- Release Management
- Test Management
- Test Operations
- Provar Manager and Provar Automation
- Setting Up a Connection to Provar Manager
- Object Mapping Between Automation and Manager
- How to Upload Test Plans, Test Plan Folders, Test Plan Instances, and Test Cases
- Provar Manager Filters
- Uploading Callable Test Cases in Provar Manager
- Uploading Test Steps in Provar Manager
- How to Know if a File in Automation is Linked in Test Manager
- Test Execution Reporting
- Metadata Coverage with Manager
- Provar Grid
- DevOps
- Introduction to Provar DevOps
- Introduction to Test Scheduling
- Apache Ant
- Configuration for Sending Emails via the Automation Command Line Interface
- Continuous Integration
- AutoRABIT Salesforce DevOps in Provar Test
- Azure DevOps
- Running a Provar CI Task in Azure DevOps Pipelines
- Configuring the Automation secrets password in Microsoft Azure Pipelines
- Parallel Execution in Microsoft Azure Pipelines using Multiple build.xml Files
- Parallel Execution in Microsoft Azure Pipelines using Targets
- Parallel execution in Microsoft Azure Pipelines using Test Plans
- Bitbucket Pipelines
- CircleCI
- Copado
- Docker
- Flosum
- Gearset
- GitHub Actions
- Integrating GitHub Actions CI to Run Automation CI Task
- Remote Trigger in GitHub Actions
- Parameterization using Environment Variables in GitHub Actions
- Parallel Execution in GitHub Actions using Multiple build.xml Files
- Parallel Execution in GitHub Actions using Targets
- Parallel Execution in GitHub Actions using Test Plan
- Parallel Execution in GitHub Actions using Job Matrix
- GitLab Continuous Integration
- Travis CI
- Jenkins
- Execution Environment Security Configuration
- Provar Jenkins Plugin
- Parallel Execution
- Running Provar on Linux
- Reporting
- Salesforce DX
- Git
- Version Control
- Salesforce Testing
- Recommended Practices
- Salesforce Connection Best Practices
- Improve Your Metadata Performance
- Java 21 Upgrade
- Testing Best Practices
- Automation Planning
- Supported Testing Phases
- Provar Naming Standards
- Test Case Design
- Create records via API
- Avoid using static values
- Abort Unused Test Sessions/Runs
- Avoid Metadata performance issues
- Increase auto-retry waits for steps using a global variable
- Create different page objects for different pages
- The Best Ways to Change Callable Test Case Locations
- Working with the .testProject file and .secrets file
- Best practices for the .provarCaches folder
- Best practices for .pageObject files
- Troubleshooting
- How to Use Keytool Command for Importing Certificates
- Installing Provar After Upgrading to macOS Catalina
- Browsers
- Configurations and Permissions
- Add Permissions to Edit Provar.ini File
- Configure Provar UI in High Resolution
- Enable Prompt to Choose Workspace
- Increase System Memory for Provar
- Refresh Org Cache Manually
- Show Hidden Provar Files on Mac
- Java Version Mismatch Error
- Unable to test cases, test suites, etc… from the Test Project Navigation sidebar
- Connections
- DevOps
- Error Messages
- Provar Manager 3.0 Install Error Resolution
- Provar Manager Test Case Upload Resolution
- Administrator has Blocked Access to Client
- JavascriptException: Javascript Error
- Resolving Failed to Create ChromeDriver Error
- Resolving Jenkins License Missing Error
- Resolving Metadata Timeout Errors
- Test Execution Fails – Firefox Not Installed
- Selenium 4 Upgrade
- Licensing, Installation and Firewalls
- Memory
- Test Builder and Test Cases
- Release Notes
- Provar Automation V3
- Automation V3: Setting Java Development Kit (JDK) Environment Variables
- Automation V3: Adding a Salesforce OAuth (Web Flow) Connection
- Automation V3: Docker Runner
- Automation V3: Running Automation Tests on Jenkins
- Automation V3: Remote Trigger in GitHub Actions
- Automation V3: Internationalization Support
- Automation V3: Configuration on Jenkins
- Automation V3: Provar Manager – Test Execution Reporting
- Automation V3: Secrets Management and Encryption
- Automation V3: Updating Automation on Windows
- Automation V3: Updating Automation on Mac
- Automation V3: Installing Automation on Windows
- Automation V3: Installing Automation on Mac
- Automation V3: Commit a Local Test Project to Source Control
- Automation V3: Activating Your License
- Automation V3: Resolving High Memory Usage
- Automation V3: Test Palette Introduction
- Automation V3: Provar Naming Standards
- Automation V3: Refresh Org Cache Manually
- Automation V3: Show Hidden Provar Files on Mac
- Automation V3: NitroX Supported Components
- Automation V3: Salesforce Lightning Web Component (LWC) Locator Support
- Automation V3: Enabling and Disabling NitroX
- Automation V3: Introducing NitroX
- Automation V3: Salesforce Connection Best Practices
- Automation V3: Version Control and DevOps
- Automation V3: Test Case Design
- Automation V3: Salesforce DX Integration
- Automation V3: Running Provar on Linux
- Automation V3: Variable Set Syntax
- Automation V3: Provar Jenkins Plugin
- Automation V3: Introduction to Test Scheduling
- Automation V3: Execution Environment Security Configuration
- Automation V3: GitHub Desktop – Creating a Git Repository for Automation Projects
- Automation V3: Amazon Web Service (AWS) & Jenkins Configuration
- Automation V3: Setting up Continuous Integration
- Automation V3: Integrating GitHub Actions CI to Run Automation CI Task
- Automation V3: GitLab Continuous Integration
- Automation V3: Gearset DevOps CI/CD via Jenkins
- Automation V3: Parallel Execution in GitHub Actions using Test Plan
- Automation V3: Parallel Execution in GitHub Actions using Job Matrix
- Automation V3: Parallel Execution in GitHub Actions using Targets
- Automation V3: Parallel Execution in GitHub Actions using Multiple build.xml Files
- Automation V3: Flosum Integration Introduction
- Automation V3: Flosum Configuration
- Automation V3: Setting up Continuous Integration with Jenkins for Docker
- Automation V3: Flosum Architecture Overview
- Automation V3: Docker Continuous Integration
- Automation V3: Generating the build.xml File for Docker
- Automation V3: Running Provar Tests on Docker using Docker File
- Automation V3: Copado Integration Introduction
- Automation V3: Provar Test Results Package
- Automation V3: Copado Architecture Overview
- Automation V3: Copado Configuration
- Automation V3: CircleCI Common Build Errors
- Automation V3: CircleCI Orbs
- Automation V3: Running a Provar CI Task in Azure DevOps Pipelines
- Automation V3: CircleCI via Docker
- Automation V3: Parallel Execution in Microsoft Azure Pipelines using Multiple build.xml Files
- Automation V3: Parallel Execution in Microsoft Azure Pipelines using Targets
- Automation V3: Parallel Execution in Microsoft Azure Pipelines using Test Plans
- Automation V3: Configuring the Automation Secrets Password in Microsoft Azure Pipelines
- Automation V3: System Requirements
- Installing Provar Automation V3
- Updating Provar Automation V3
- Licensing Provar Automation V3
- Automation V3: Optimizing Org and Connection Metadata Processing in Provar
- Automation V3: Granting Org Permissions to Provar Automation
- Using Provar Automation V3
- Automation V3: Provar Automation
- Automation V3: Test Data Generation
- Automation V3: Creating a New Test Project
- Automation V3: Creating Custom Test Steps
- Automation V3: Provar Test Builder
- Automation V3: Reintroduction of CLI license Check
- Automation V3: Creating Test Cases
- Automation V3: Debugging Tests
- Automation V3: Environment Management
- Automation V3: Managing Test Steps
- Automation V3: Reporting
- Automation V3: Import Test Project from a File
- Automation V3: Import Test Project from Local Repository
- Automation V3: Import Test Project from a Remote Repository
- Automation V3: Running Tests
- Automation V3: Testing Browser Options
- Automation V3: Testing Browser – Chrome Headless
- Automation V3: Provar Feature Flags and Properties Configuration
- Automation V3: Defining Proxy Settings
- Automation V3: Behavior-Driven Development
- Automation V3: Customize Browser Driver Location
- Automation V3: Setup and Teardown Test Cases
- Automation V3: Japanese Language Support
- Automation V3: Reload Org Cache
- Automation V3: Using Java Method Annotations for Custom Objects
- Automation V3: Salesforce API Testing
- Automation V3: Consolidating Multiple Test Execution Reports
- Automation V3: Tags and Service Level Agreements (SLAs)
- Automation V3: Test Plans
- Automation V3: Searching Provar with Find Usages
- Automation V3: Exporting Test Projects
- Automation V3: Tooltip Testing
- Automation V3: Refresh and Recompile
- Custom Table Mapping in V3
- NitroX in V3
- ProvarDX in V3
- Test Cycles in V3
- Using Custom APIs in V3
- Page Objects in V3
- Automation V3: ProvarX™
- Automation V3: Creating an XPath
- Automation V3: Mapping Non-Salesforce Fields
- Automation V3: Introduction to XPaths
- Automation V3: JavaScript Locator Support
- Automation V3: Create different page objects for different pages
- Automation V3: Maintaining Page Objects
- Automation V3: Refresh and Reselect Field Locators in Test Builder
- Callable Tests in V3
- Functions in V3
- Automation V3: TestCaseErrors
- Automation V3: TestRunErrors
- Automation V3: TestCaseSuccessful
- Automation V3: TestCaseOutCome
- Automation V3: TestCasePath
- Automation V3: StringTrim
- Automation V3: TestCaseName
- Automation V3: DateFormat
- Automation V3: Not
- Automation V3: IsSorted
- Automation V3: StringReplace
- Automation V3: StringNormalize
- Automation V3: DateParse
- Automation V3: DateAdd
- Automation V3: GetEnvironmentVariable
- Automation V3: GetSelectedEnvironment
- Automation V3: NumberFormat
- Automation V3: Using Functions
- Automation V3: UniqueId
- Automation V3: Count
- Automation V3: Round
- Using the Test Palette in V3
- Automation V3: Read Test Step
- Automation V3: String Test Steps
- Automation V3: Generate Test Case
- Automation V3: For Each Test Step
- Automation V3: Page Object Cleaner
- Automation V3: Assert Salesforce Layout
- Automation V3: Break Test Step
- Automation V3: UI On Screen
- Automation V3: UI Handle Alert
- Automation V3: UI Assert
- Automation V3: Set Values
- Automation V3: UI With Row
- Automation V3: UI Action
- Automation V3: UI Connect
- Automation V3: Fail Test Step
- Automation V3: While Test Step
- Automation V3: Apex Execute
- Automation V3: List Compare
- Automation V3: UI Navigate
- Automation V3: UI Fill
- Automation V3: If Test Step
- Automation V3: Group Steps Test Step
- Automation V3: Set Values Test Step
- Automation V3: Apex Bulk
- Automation V3: Sleep Test Step
- Automation V3: Switch Test Step
- Automation V3: Finally Test Step
- Automation V3: Wait For Test Step
- Automation V3: Extract Salesforce Layout
- Automation V3: Assert Test Step
- Applications Testing in V3
- Automation V3: Mobile Emulation (Salesforce Mobile)
- Automation V3: Using Provar with Amazon Web Services (AWS) Device Farm
- Automation V3: PDF Testing
- Automation V3: App Configuration for Microsoft Connection in MS Portal for OAuth 2.0
- Automation V3: OAuth 2.0 Microsoft Exchange Email Connection
- Automation V3: Create a Connection for Office 365 GCC High
- Automation V3: Support for Existing MS OAuth Email Connection
- Automation V3: Gmail Connection in Automation with App Password
- Automation V3: Email Testing in Automation
- Automation V3: OAuth 2.0 MS Graph Email Connection
- Automation V3: Email Testing Examples
- Automation V3: Database Connections
- Automation V3: Web Services
- Data-Driven Testing in V3
- DevOps with V3
- Automation V3: Introduction to Provar DevOps
- Automation V3: Bitbucket Pipelines
- Automation V3: Perfecto Mobile
- Automation V3: ANT Task Parameters
- Automation V3: ANT: Generating ANT Build File
- Automation V3: ANT Licensing
- Automation V3: Reading Data from Excel
- Automation V3: Configuration on other CI tools
- Automation V3: Setting Apache Ant Environment Variables
- Automation V3: BrowserStack Desktop
- Automation V3: Integrating with LambdaTest
- Automation V3: Sauce Labs Desktop
- Automation V3: AutoRABIT Salesforce DevOps in Provar Test
- Automation V3: Selenium Grid
- Automation V3: Working with Git
- Automation V3: Configuration for Sending Emails via the Automation Command Line Interface
- Automation V3: Parameterization using Environment Variables in GitHub Actions
- Automation V3: Slack Integration with Automation
- Automation V3: Zephyr Cloud and Server
- Automation V3: Adding a Salesforce Communities Connection
- Automation V3: Integrating with Sauce Labs Real Device
- Automation V3: Travis CI
- Salesforce Testing with V3
- Automation V3: Salesforce Release Updates
- Automation V3: Adding a Salesforce Connection
- Automation V3: Adding a Log-on As Connection
- Automation V3: Adding a Salesforce OAuth (JWT Flow) Connection
- Automation V3: Salesforce Console Testing
- Automation V3: Adding a Salesforce Portal Connection
- Automation V3: Visualforce Testing
- Automation V3: List and Table Testing
- Provar Manager and Provar Automation V3
- Automation V3: Setting Up a Connection to Provar Manager
- Automation V3: Provar Manager Filters
- Automation V3: Importing 3rd-Party Test Projects
- Automation V3: Uploading Test Steps in Provar Manager
- Automation V3: Test Management
- Automation V3: Provar Manager Test Operations
- Automation V3: Provar Manager Test Execution
- Automation V3: Release Management
- Automation V3: Provar Manager Plugins
- Automation V3: Provar Manager Test Coverage
- Automation V3: Provar Manager Setup and User Guide
- Automation V3: Uploading 3rd-Party Test Results
- Automation V3: Uploading Existing Manual Test Cases to Provar Manager with DataLoader.Io
- Automation V3: Quality Journey, Quality Center, and Dashboards
- Automation V3: Object Mapping Between Provar Automation and Provar Manager
- Automation V3: Uploading Callable Test Cases in Provar Manager
- Automation V3: Metadata Coverage with Manager
- Recommended Practices with V3
- Automation V3: Automation Planning
- Automation V3: Supported Testing Phases
- Automation V3: Best practices for the .provarCaches folder
- Automation V3: Best practices for .pageObject files
- Automation V3: Avoid Metadata performance issues
- Automation V3: The Best Ways to Change Callable Test Case Locations
- Automation V3: Improve Your Metadata Performance
- Automation V3: Abort Unused Test Sessions/Runs
- Automation V3: Create Records via API
- Automation V3: Increase auto-retry waits for steps using a global variable
- Troubleshooting with V3
- Automation V3: Add Permissions to Edit Provar.ini File
- Automation V3: Test Builder Does Not Launch
- Automation V3: Provar License Issue Solution
- Automation V3: How to Configure a Single Sign-On Connection
- Automation V3: Out of Memory Error During CI Execution
- Automation V3: Add Gmail Firewall Exception
- Automation V3: Add a License Firewall Exception
- Automation V3: Resolving Jenkins License Missing Error
- Automation V3: Increase System Memory for Provar
- Automation V3: Resolving Metadata Timeout Errors
- Automation V3: How to Use Keytool Command for Importing Certificates
- Automation V3: Java Version Mismatch Error
- Automation V3: Provar Manager 3.0 Install Error Resolution
- Automation V3: Test Case Does Not Run on IE Browser
- Automation V3: Test Builder Not Working Correctly
- Provar Grid and Provar Automation V3
- AI with Provar Automation V3