Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions docs/hyperexecute-cli-run-tests-on-hyperexecute-grid.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,37 @@ You can download the `HyperExecute CLI` for your OS from the links given below :
| Windows | https://downloads.lambdatest.com/hyperexecute/windows/hyperexecute.exe |
| macOS | https://downloads.lambdatest.com/hyperexecute/darwin/hyperexecute |

## Verifying the Authenticity of the CLI
To ensure the binary you’ve downloaded is genuine and has not been tampered with, you can verify its digital signature or code signing certificate. LambdaTest signs all official HyperExecute CLI releases for security and integrity assurance.

<Tabs className="docs__val">

<TabItem value="bash" label="macOS" default>
You can verify the code signature of the binary using the `codesign` command. In your terminal run the following command:

```bash
codesign -dvvv <PATH_TO_CLI>
```

<img loading="lazy" src={require('../assets/images/hyperexecute/cli/mac-verification.png').default} alt="Image" className="doc_img"/>

</TabItem>

<TabItem value="powershell" label="Windows" default>

**Step 1:** Locate the downloaded CLI binary (e.g., hyperexecute.exe). <br />
**Step 2:** Right-click on the file and select Properties. <br />
**Step 3:** Go to the Digital Signatures tab. <br />
**Step 4:** Select the listed signature and click Details. <br />
**Step 5:** Click View Certificate → Details to inspect the certificate information. <br />

This certificate should display LambdaTest, Inc. as the verified publisher.

<img loading="lazy" src={require('../assets/images/hyperexecute/cli/windows-verification.png').default} alt="Image" className="doc_img"/>

</TabItem>
</Tabs>

## HyperExecute CLI Supported Flags

HyperExecute CLI provides different command-line flags that let you control the HyperExecute platform as per your customised requirements. You can run `hyperexecute.exe --help` on your terminal to explore the different flags.
Expand Down
4 changes: 3 additions & 1 deletion docs/hyperexecute-katalon-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ HyperExecute provides seamless integration with Katalon Studio, enabling you to
- Environment and browser details
- Stack traces for failed tests

> Ensure your project is configured with the Katalon framework and all test scripts are in place.
> Ensure your project is configured with the [Katalon framework]( https://www.lambdatest.com/support/docs/katalon-integration-with-hyperexecute/) and all test scripts are in place.
## Steps to Generate Katalon Reports on HyperExecute

Expand All @@ -65,4 +65,6 @@ partialReports:
**Step 3:** Now execute your job by triggering the HyperExecute CLI. You can visit the HyperExecute dashboard to download the report after job completion.
> This image shows consolidated report of katalon 10+ versions
<img loading="lazy" src={require('../assets/images/hyperexecute/release-notes/katalon-report.png').default} alt="Image" className="doc_img"/>
Loading