Skip to content

Commit

Permalink
Merge branch 'dev' into idea-1606
Browse files Browse the repository at this point in the history
  • Loading branch information
bharathk08 authored Jul 8, 2024
2 parents aefdd16 + 064e77a commit 92b39d9
Show file tree
Hide file tree
Showing 7 changed files with 350 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/left-nav-title.json
Original file line number Diff line number Diff line change
Expand Up @@ -679,5 +679,6 @@
"object-learning": {"/docs/windows-automation/object-learning": "Object Learning (Using UFT One)"},
"import-tsrx-files": { "/docs/windows-automation/import-tsrx-files/": "Importing/Updating TSRx Files" },
"record-elements": {"/docs/elements/mobile-web-application/record-elements/": "Record Multiple Elements" },
"add-test-cases-for-mobile-web-app": {"/docs/test-cases/manage/add-test-cases-for-mobile-web-app/": "Test Cases (Mobile Web App)" }
"add-test-cases-for-mobile-web-app": {"/docs/test-cases/manage/add-test-cases-for-mobile-web-app/": "Test Cases (Mobile Web App)" },
"most-common-issues": { "/docs/troubleshooting/salesforce-testing/most-common-issues/": "Most Common Issues" }
}
182 changes: 182 additions & 0 deletions src/pages/docs/runs/executing-tests-in-private-grid.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,182 @@
---
title: "Run Tests on Private Grid"
metadesc: "Testsigma Private Grid helps run parallel tests across multiple browsers, OS, and machines. This article discusses how to setup and execute tests on Private Grid"
noindex: false
order: 9.41
page_id: "Test Plan Local Executions"
warning: false
contextual_links:
- type: section
name: "Contents"
- type: link
name: "Prerequisites"
url: "#prerequisites"
- type: link
name: "Create Dynamic Agent Through API"
url: "#create-dynamic-agent-through-api"
- type: link
name: "Start Dynamic Agent Using jwtApiKey"
url: "#start-dynamic-agent-using-jwtapikey"
- type: link
name: "Start the Private Grid Hub & Web Nodes"
url: "#start-the-private-grid-hub--web-nodes"
- type: link
name: "Execute Tests in Private Grid using REST API"
url: "#execute-tests-in-private-grid-using-rest-api"
- type: link
name: "Execute Tests in Private Grid from Application"
url: "#execute-tests-in-private-grid-from-application"
---


---

Testsigma Private Grid helps run parallel tests across multiple browsers, operating systems, and machines. This can boost the execution time of even the largest test suites and save minutes, hours, or days.

![Testsigma Private Grid](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/TestsigmaHub.png)

**Hub** <br>
The Hub is the main controller in Private Grid. Once it receives the test requests, it distributes them to different machines called Nodes. The Hub knows what each Node can do. It evaluates the test requirements against the capabilities of the available Nodes to select the best match and forwards the tests to the selected Nodes.



**Nodes** <br>
Like Test Machines in Testsigma, Nodes are the machines that run the tests in Private Grid. They can have multiple browsers and operating systems. A session is created when the Node receives a test request from the client. Any commands sent to this Node will then be executed, and the response will be returned to the client. Nodes can handle multiple test sessions simultaneously, depending on their configuration and resource capacity.

This article discusses executing tests in Testsigma Private Grid.


---

> ## **Prerequisites**
>
> - Testsigma Agent
> - Core Java (OpenJDK 18)
> - Testsigma Private Grid Folder
> - Ngrok Setup

---

## **Create Dynamic Agent Through API**
Use the following Endpoint to create Dynamic Agents with Private Grid configuration in Testsigma using REST API.

|**Request Type**|**POST**|
|---|---|
|**Endpoint**| https://app.testsigma.com/api/v1/agents |
|**Authorization**| Bearer **<API\_Token>**<br>Same as the Testsigma API key mentioned above.|
|**Request Body Type (JSON)**| Raw |
|**Payload**|<pre>{<br> "name": "&lt;Unique Agent Name&gt;",<br> "agentType": "TRANSIENT",<br> "externalConfig": {<br> "url": "http://localhost:4444",<br> "authenticationEnabled": true,<br> "userName": "root",<br> "password": "root",<br> "type": "SELENIUM",<br> "browserList": ["Chrome", "Safari"]<br> }<br> }<pre>|
|**Response Body Type (JSON)**|<pre>{<br> "id": 9,<br> "uniqueId": "a3cceab7-5bc9-41d1-a905-e54e0a23c677",<br> "jwtApiKey": "&lt;Unique JWT Token&gt;",<br> "agentVersion": null,<br> "createdById": 2,<br> "updatedById": 2,<br> "createdDate": 1719222650559,<br> "updatedDate": 1719222650559,<br> "system": {<br> "title": "Dynamic Agent",<br> "id": 21,<br> "protocol": "http",<br> "port": null,<br> "httpsPort": null,<br> "ipAddress": "127.0.0.1",<br> "hostName": null,<br> "osType": null,<br> "osVersion": null,<br> "systemType": 4<br> },<br> "browserList": [],<br> "currentAgentVersion": "5.9.0",<br> "status": "REGISTERED",<br> "isActive": false<br>}<pre>|

Here’s a quick GIF demonstrating how to create a Dynamic Agent through API with the above mentioned endpoint.

![Create Dynamic Agent](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/CreateDynamicAgent.gif)

---

## **Start Dynamic Agent Using jwtApiKey**

Open the terminal in the **Testsigma Agent directory** and use the following command to start the **Dynamic Agent**:

> **For Mac/Linux**
>
><pre><code>&lt;agent_dir&gt;./start.sh --TS_ACTIVATION_KEY=&lt;JWT_KEY&gt;</code></pre>

> **For Windows**
>
><pre><code>&lt;agent_dir&gt;./start.bat --TS_ACTIVATION_KEY=&lt;JWT_KEY&gt;</code></pre>
Where &lt;JWT_KEY&gt; is **jwtApiKey** from the above response.

Here’s a quick GIF demonstrating how to start Dynamic Agent using jwtApiKey with the above command.

![Up Testsigma Agent](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/UpDynamicAgent.gif)

---

## **Start the Private Grid Hub & Web Nodes**

To start the **Private Grid Hub**, open the **Terminal** at **Private Grid** folder and use the following command:

<pre><code>java -jar selenium-server-4.13.0.jar hub</code></pre>

Once the **Private Grid** starts, open http://localhost:4444

To start the Web Nodes, open the new tab on the same Terminal and use the following command:

<pre><code>java -jar selenium-server-4.13.0.jar node --config node.json --selenium-manager true</code></pre>

Once the command runs, the registered **Nodes** will be added to the **Private Grid**.

Here’s a quick GIF demonstrating the steps to start the Private Grid Hub and add Web Nodes.
![Private Grid Setup](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/PrivateHub.gif)

---

## **Execute Tests in Private Grid using REST API**

Use the following **Endpoint** to execute the Testsigma’s test plan in **Private Grid** using REST API.

|**Request Type**|**POST**|
|---|---|
|**Endpoint**| https://app.testsigma.com/api/v1/execution_results |
|**Authorization**| Bearer **<API\_Token>**<br>Same as the Testsigma API key mentioned above.|
|**Request Body Type (JSON)**| Raw |
|**Payload**|<pre> {<br> "executionId" : &lt;Test Plan Exe ID&gt;,<br> "testDevices" : [<br> {<br> "title" : "Dynamic Machine",<br> "targetMachine" : 27,<br> "browser" : "CHROME",<br> "executionLabType" : "Hybrid",<br> "suiteIds" : [&lt;Suite IDs&gt;],<br> "isHeadless" : false,<br> "runTestSuitesInParallel": true,<br> "runTestCasesInParallel": true,<br> "createSessionAtCaseLevel": true<br> }<br> ]<br>}<br><pre>|
|**Sample Response Body (JSON)**|<pre>{<br> "id": 581,<br> "execution": null,<br> "executionId": 346,<br> "startTime": 1719400027825,<br> "endTime": null,<br> "duration": null,<br> "result": "QUEUED",<br> "status": "STATUS\_CREATED",<br> "message": "Test Plan execution message",<br> "executedBy": 29,<br> "buildNo": null,<br> "environmentId": null,<br> "totalCount": null,<br> "failedCount": null,<br> "passedCount": null,<br> "stoppedCount": null,<br> "notExecutedCount": null,<br> "queuedCount": null,<br> "runningCount": null,<br> "visualTestResult": null,<br> "environment": null,<br> "childResult": null,<br> "reRunParentId": null,<br> "triggeredType": "API",<br> "totalRunningCount": 0,<br> "executionDetails": {<br> "page\_timeout": 30,<br> "element\_timeout": 30,<br> "recovery\_action": "Run\_Next\_Testcase",<br> "on\_aborted\_action": "Reuse\_Session",<br> "screenshot\_option": "ALL\_TYPES",<br> "screenshot\_mode": null,<br> "group\_prerequisite\_fail": "Abort",<br> "test\_case\_prerequisite\_fail": "Abort",<br> "test\_step\_prerequisite\_fail": "Run\_Next\_Testcase",<br> "global\_param\_name": null<br> },<br> "totalQueuedCount": 0,<br> "mobileInspectionId": null,<br> "environmentResultsDTO": [],<br> "executionResultConfig": null,<br> "isReRunEnabled": false,<br> "consolidatedResult": "QUEUED",<br> "consolidatedStatus": "STATUS\_CREATED",<br> "resultType": "ORIGINAL",<br> "consolidatedDuration": null,<br> "runTestCasesInParallel": false,<br> "runTestSuitesInParallel": false,<br> "scheduledId": null,<br> "testPlanHookResults": null,<br> "reRunType": null,<br> "consolidatedPlanTotalCount": null,<br> "consolidatedPlanFailedCount": null,<br> "consolidatedPlanPassedCount": null,<br> "consolidatedPlanStoppedCount": null,<br> "consolidatedPlanNotExecutedCount": null,<br> "consolidatedPlanQueuedCount": null,<br> "consolidatedPlanRunningCount": null,<br> "testDevicesNames": null,<br> "latestResult": null,<br> "testPlanResultMetric": null,<br> "activeExecutionResultCount": 0<br>}<pre>|

Here’s a quick GIF demonstrating how to execute tests through a Dynamic Agent through API with the above mentioned endpoint.
![Execute Tests using API](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/executetestswithgrid.gif)

---

## **Execute Tests in Private Grid from Application**

### **a. Integrating Testsigma with Private Grid**

1. From the left navigation bar, go to **Settings > Integrations** and choose the **Test Lab** tab.

2. Enable the toggle on the **Private Grid** widget. A popup screen will display the details for the **Private Grid** lab.

3. On **Private Grid** details,
- If there is authentication enabled in ngrok platform, select **Authentication Enabled** and enter **Username** and **Password**.
- Enter the **Private Hub URL** and select applications to use with your **Private Grid** framework.

4. Click on **Add Details**.

<br>

<details style="border: 1px solid gray; border-radius: 4px; padding: 0.5em; margin: 0.5em 0; background-color: #f2f2f2;">
<summary style="color: darkgreen; font-weight: bold; list-style: none;" onclick="if(this.parentNode.open) this.parentNode.style.border='1px solid gray'; else this.parentNode.style.border='none';">
<span style="margin-right: 5px;">ℹ️</span>Fetching the Private Hub URL:
</summary><br>
Follow the steps below to set up ngrok on your device to fetch the Private Hub URL:
<ul>
<ol>
<li><a href="https://ngrok.com/" target="_blank">Visit ngork website</a>, create an account, go to <b>Getting Started > Setup & Installation</b>.</li>
<li>Follow the instructions on the <b>Setup & Installation</b> page to set up ngrok.</li>
<li>Once the installation is complete, enter the command <b>ngrok http 4444</b> on the terminal.</li>
<li>Copy the URL as shown in the image below and use this to integrate Testsigma with <b>Private Grid</b>.</li>
<img src="https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/ngork.png" alt="Trulli">
</ol>
</ul>
</details>

<br>

### **b. Execute Tests in Private Grid**

1. For test case execution, select **Private Grid** as **Test Lab** on **Ad-hoc Run** overlay.

Here’s a quick GIF demonstrating how to execute a test case in Private Grid.
![Test Case Execution](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/tcexeinPG.gif)

2. For test plan execution, add **Private Grid** while creating test machine profiles for execution. You need to go to **Add Test Suites & Link Machine Profiles > Select test machine profiles > Add Machine** and add **Private Grid** as **Test Lab**.

Here’s a quick GIF demonstrating how to execute a test plan in Private Grid.

![Test Plan Execution](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/ExecuteTestinPGUI.gif)

---
2 changes: 1 addition & 1 deletion src/pages/docs/runs/test-plans-on-local-devices.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Test Plan Local Executions"
metadesc: "Local execution is preferred for testing apps that are only available locally, for security purposes. How to perform test plan executions on local devices in Testsigma."
noindex: false
order: 9.41
order: 9.42
page_id: "Test Plan Local Executions"
warning: false
contextual_links:
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/salesforce-testing/connected-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Creating a connected app is important to link external applications and the Sale

5. In the **API** section, select the **Enable OAuth Settings** checkbox to set **Callback URL** and **Selected OAuth Scopes**. The **Selected OAuth Scopes** are mandatory in the **Connected App** to connect & download the metadata.

- Use this Callback URL: <span style="font-family: monospace; font-size: 0.875em; background-color: #f8f8f8; padding: 0.2em 0.4em; border-radius: 4px;">https://salesforce-callback.testsigma.com/authorize</span>
- Use this Callback URL: <span style="font-family: monospace; font-size: 0.875em; background-color: #f8f8f8; padding: 0.2em 0.4em; border-radius: 4px;">https://salesforce-callback.testsigma.com/authorize/</span>


![API Details](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/sfcaapiinfo.png)
Expand Down
4 changes: 2 additions & 2 deletions src/pages/docs/salesforce-testing/metadata-connections.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ There are two ways to Authenticate:
<ul>
<li><b>User name & Password:</b> For User name & Password, enter Username, Password, Security token, Consumer key, and Consumer secret. </li>
<li><b>OAuth:</b> For OAuth, enter Username, Consumer key, and Consumer secret.
<li><b>Callback URL:</b> <span style="font-family: monospace; font-size: 0.875em; background-color: #f8f8f8; padding: 0.2em 0.4em; border-radius: 4px;">https://salesforce-callback.testsigma.com/authorize</span></li>
<li><b>Callback URL:</b> Use the below mentioned Callback URL. <br> <br> <pre>https://salesforce-callback.testsigma.com/authorize/</pre></li>
</ul>
</li>
</ul>
Expand All @@ -86,7 +86,7 @@ There are two ways to Authenticate:
- Wait until the sync is complete. This will take some time.
![Wait](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/sfmdsipg.png)

1. Once Metadata sync is successful, you can create test cases by clicking **Create Test Case**.
4. Once Metadata sync is successful, you can create test cases by clicking **Create Test Case**.
![Create Tests](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/sfmdctc.png)

---
Expand Down
36 changes: 36 additions & 0 deletions src/pages/docs/salesforce-testing/special-nlps.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ contextual_links:
- type: link
name: "List of Special NLPs"
url: "#list-of-special-nlps"
- type: link
name: "Using API NLP Test Steps"
url: "#using-api-nlp-test-steps"
---

---
Expand Down Expand Up @@ -55,4 +58,37 @@ With Testsigma's special NLPs, you can scale and enhance Salesforce Testing. The
| Edit record with **RECORD_ID** using **User Connection** in **Salesforce Object** | This NLP updates a record using RECORD\_ID for a specific Salesforce object using the update record API. <br><br> **User Inputs in NLP:** <br> 1. RECORD_ID <br> 2. User Connection<br> 3. Salesforce Object |
| Delete record with **RECORD_ID** using **User Connection** in **Salesforce Object** | This NLP deletes a record using RECORD\_ID for a specific Salesforce object using the delete record API. <br><br> **User Inputs in NLP:** <br> 1. RECORD_ID <br> 2. User Connection<br> 3. Salesforce Object |

---

## **Using API NLP Test Steps**

1. Let's say you want to automate the creation of a Salesforce Lead record.

To create a lead record, navigate to the **Leads** tab, click **New**, and fill out the form with details such as the lead's name, company, contact information, and descriptions. After entering the necessary information, save the record. The lead will be available for future actions, such as follow-ups or conversion into an account, contact, or opportunity.

Guess what? With Testsigma, you can perform all these actions in a single API step using the following NLP:

![Create Lead](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/apinlpcl.png)

Here’s a quick GIF demonstrating how to create a Salesforce lead record.

![Create Lead](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/CreateAPISF.gif)

2. To edit any lead record using **RECORD_ID**, you can use the following NLP:

![Edit Lead](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/apinlpedit.png)

Here’s a quick GIF demonstrating how to edit a Salesforce lead record.

![Edit Lead](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/Editleadsf.gif)


3. To delete any lead record using **RECORD_ID**, you can use the following NLP:

![Delete Lead](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/appinlpdlt.png)

Here’s a quick GIF demonstrating how to delete a Salesforce lead record.

![Delete Lead](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/applications/deletesflead.gif)

---
Loading

0 comments on commit 92b39d9

Please sign in to comment.