From 22d5535597664d9a7492cae19420e5262380cc0f Mon Sep 17 00:00:00 2001 From: sanjaysingh387 Date: Tue, 23 Sep 2025 14:01:56 +0530 Subject: [PATCH 1/5] update doc - kaneai CI CD automation --- docs/kaneai-ci-cd-automation.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/kaneai-ci-cd-automation.md b/docs/kaneai-ci-cd-automation.md index 46b9d7775..f5235b90a 100644 --- a/docs/kaneai-ci-cd-automation.md +++ b/docs/kaneai-ci-cd-automation.md @@ -84,6 +84,8 @@ Replace `` with the actual ID from the URL and set additional optiona - **max_retries**: Define the number of maximum retries you want (Max value 5). Default retries 1. - **timezone**: Define the timezone you want to choose for test run in UTC+01:00 format. - **app_profiling**: Add true if you want to track app profiling metrics in your test. You can find more details [here](https://www.lambdatest.com/support/docs/appium-app-performance-analytics/). +- **android_app_id**: Specify an Android app ID to override the existing app in the configuration of the Test instances. +- **ios_app_id**: Specify an app iOS ID to override the existing app in the configuration of the Test instances. - **performance**: Add true if you want generate Lighthouse report for your web tests. Supported on limited OS browser combinations. Additionally, Setting this as true could potentially slow down the execution time. You can find more details [here](https://www.lambdatest.com/support/docs/view-lighthouse-performance-metrics/). - **accessibility**: Set as true if you want to run accessibility test on all your tests in the test run. Setting this as true could potentially slow down the execution time. - **replaced_url :** To be used to dynamically replace any pattern URL in test cases with the replacement URL for entire test run. @@ -98,6 +100,8 @@ curl --location 'https://test-manager-api.lambdatest.com/api/atm/v1/hyperexecute "test_run_id": "YOUR_TEST_RUN_ID", #enter test run id "concurrency": 1, # Optional, default 1 "title": "UNIQUE_BUILD_NAME", #Optional + "android_app_id": "lt://< YOUR_ANDROD_APP_ID>", #optional + "ios_app_id": "lt://< YOUR_iOS_APP_ID>", #optional "console_logs": "false", #Optional for web tests, options - false, error, warn, info, true "network_logs": "false", #Optional to capture network calls during the test "network_full_har": "false", #Optional, Only for web, to capture complete network requests & response during the test From 9142594600db215d1a92d79f330fe2c9a77b3bc7 Mon Sep 17 00:00:00 2001 From: sanjaysingh387 Date: Tue, 23 Sep 2025 14:46:53 +0530 Subject: [PATCH 2/5] fixes kane ci cd automation --- docs/kaneai-ci-cd-automation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/kaneai-ci-cd-automation.md b/docs/kaneai-ci-cd-automation.md index f5235b90a..dc78b97c0 100644 --- a/docs/kaneai-ci-cd-automation.md +++ b/docs/kaneai-ci-cd-automation.md @@ -84,9 +84,9 @@ Replace `` with the actual ID from the URL and set additional optiona - **max_retries**: Define the number of maximum retries you want (Max value 5). Default retries 1. - **timezone**: Define the timezone you want to choose for test run in UTC+01:00 format. - **app_profiling**: Add true if you want to track app profiling metrics in your test. You can find more details [here](https://www.lambdatest.com/support/docs/appium-app-performance-analytics/). -- **android_app_id**: Specify an Android app ID to override the existing app in the configuration of the Test instances. -- **ios_app_id**: Specify an app iOS ID to override the existing app in the configuration of the Test instances. - **performance**: Add true if you want generate Lighthouse report for your web tests. Supported on limited OS browser combinations. Additionally, Setting this as true could potentially slow down the execution time. You can find more details [here](https://www.lambdatest.com/support/docs/view-lighthouse-performance-metrics/). +- **android_app_id**: Specify an Android app ID to override the existing app in the configuration of the Test instances. +- **ios_app_id**: Specify an iOS app ID to override the existing app in the configuration of the Test instances. - **accessibility**: Set as true if you want to run accessibility test on all your tests in the test run. Setting this as true could potentially slow down the execution time. - **replaced_url :** To be used to dynamically replace any pattern URL in test cases with the replacement URL for entire test run. @@ -100,8 +100,6 @@ curl --location 'https://test-manager-api.lambdatest.com/api/atm/v1/hyperexecute "test_run_id": "YOUR_TEST_RUN_ID", #enter test run id "concurrency": 1, # Optional, default 1 "title": "UNIQUE_BUILD_NAME", #Optional - "android_app_id": "lt://< YOUR_ANDROD_APP_ID>", #optional - "ios_app_id": "lt://< YOUR_iOS_APP_ID>", #optional "console_logs": "false", #Optional for web tests, options - false, error, warn, info, true "network_logs": "false", #Optional to capture network calls during the test "network_full_har": "false", #Optional, Only for web, to capture complete network requests & response during the test @@ -116,6 +114,8 @@ curl --location 'https://test-manager-api.lambdatest.com/api/atm/v1/hyperexecute "timezone": "UTC+01:00", #Optional, Only for web, to define the timezone using which the test runs should run "app_profiling": "false", #Optional for performance metrics for native mobile apps "performance": "false", #Optional for lighthouse report for web tests + "android_app_id": "lt://", #optional + "ios_app_id": "lt://", #optional "accessibility": "false", #Optional only for web tests "network_throttle": { "label": "No Throttling", From 8aa52bbe475560b70f8b5b906b80f1a3794c6fc3 Mon Sep 17 00:00:00 2001 From: sanjaysingh387 Date: Tue, 23 Sep 2025 15:30:44 +0530 Subject: [PATCH 3/5] Support kaneai doc --- docs/support.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/support.md b/docs/support.md index b1b106b11..11fddef20 100644 --- a/docs/support.md +++ b/docs/support.md @@ -169,10 +169,11 @@ import NewTag from '../src/component/newTag';

KaneAI  

From 780e98beda4cb9e49c29ac2e60cb4beaf1d0947c Mon Sep 17 00:00:00 2001 From: sanjaysingh387 Date: Tue, 23 Sep 2025 16:11:30 +0530 Subject: [PATCH 4/5] kaneai-cicd-update maxretry --- docs/kaneai-ci-cd-automation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/kaneai-ci-cd-automation.md b/docs/kaneai-ci-cd-automation.md index dc78b97c0..9a53ab508 100644 --- a/docs/kaneai-ci-cd-automation.md +++ b/docs/kaneai-ci-cd-automation.md @@ -80,8 +80,8 @@ Replace `` with the actual ID from the URL and set additional optiona - **dedicated_proxy**: Add the region of the dedicated proxy such as _us_ or _eu_, #Optional, either tunnel or dedicated proxy or geolocation can be used in a single API call. - **geolocation**: Add the resgion of the geolocation that you want to run your tests from. You can find the list of support geolocations [here](https://www.lambdatest.com/support/docs/selenium-geolocation-capabilities/). - **environment_id**: Define the environment on which you want to run the test run if required. -- **retry_on_failure**: Define if you want to retry in case of failure (Boolean). If "retry_on_failure" is false, the default max retries will still be 1. -- **max_retries**: Define the number of maximum retries you want (Max value 5). Default retries 1. +- **retry_on_failure**: Define whether to retry if the testRunnerCommand execution fails. If "retry_on_failure" is false, the default max retries will still be 1. You can find more details [here]( https://www.lambdatest.com/support/docs/deep-dive-into-hyperexecute-yaml/#retryonfailure). +- **max_retries**: Define the number of maximum retries you want (Max value 5). Default retries 1. You can find more details [here](https://www.lambdatest.com/support/docs/deep-dive-into-hyperexecute-yaml/#maxretries). - **timezone**: Define the timezone you want to choose for test run in UTC+01:00 format. - **app_profiling**: Add true if you want to track app profiling metrics in your test. You can find more details [here](https://www.lambdatest.com/support/docs/appium-app-performance-analytics/). - **performance**: Add true if you want generate Lighthouse report for your web tests. Supported on limited OS browser combinations. Additionally, Setting this as true could potentially slow down the execution time. You can find more details [here](https://www.lambdatest.com/support/docs/view-lighthouse-performance-metrics/). From a8e9446bbfc3ab9920103a480daff7ad620cb1fa Mon Sep 17 00:00:00 2001 From: sanjaysingh387 Date: Tue, 23 Sep 2025 16:17:17 +0530 Subject: [PATCH 5/5] kaneai cicd link update --- docs/kaneai-ci-cd-automation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kaneai-ci-cd-automation.md b/docs/kaneai-ci-cd-automation.md index 9a53ab508..5a8282feb 100644 --- a/docs/kaneai-ci-cd-automation.md +++ b/docs/kaneai-ci-cd-automation.md @@ -80,7 +80,7 @@ Replace `` with the actual ID from the URL and set additional optiona - **dedicated_proxy**: Add the region of the dedicated proxy such as _us_ or _eu_, #Optional, either tunnel or dedicated proxy or geolocation can be used in a single API call. - **geolocation**: Add the resgion of the geolocation that you want to run your tests from. You can find the list of support geolocations [here](https://www.lambdatest.com/support/docs/selenium-geolocation-capabilities/). - **environment_id**: Define the environment on which you want to run the test run if required. -- **retry_on_failure**: Define whether to retry if the testRunnerCommand execution fails. If "retry_on_failure" is false, the default max retries will still be 1. You can find more details [here]( https://www.lambdatest.com/support/docs/deep-dive-into-hyperexecute-yaml/#retryonfailure). +- **retry_on_failure**: Define whether to retry if the [testRunnerCommand](https://www.lambdatest.com/support/docs/deep-dive-into-hyperexecute-yaml/#testrunnercommand) execution fails. If "retry_on_failure" is false, the default max retries will still be 1. You can find more details [here]( https://www.lambdatest.com/support/docs/deep-dive-into-hyperexecute-yaml/#retryonfailure). - **max_retries**: Define the number of maximum retries you want (Max value 5). Default retries 1. You can find more details [here](https://www.lambdatest.com/support/docs/deep-dive-into-hyperexecute-yaml/#maxretries). - **timezone**: Define the timezone you want to choose for test run in UTC+01:00 format. - **app_profiling**: Add true if you want to track app profiling metrics in your test. You can find more details [here](https://www.lambdatest.com/support/docs/appium-app-performance-analytics/).