diff --git a/.github/workflows/Algolia-crawler-stage.yml b/.github/workflows/Algolia-crawler-stage.yml
new file mode 100644
index 00000000..5cc0de82
--- /dev/null
+++ b/.github/workflows/Algolia-crawler-stage.yml
@@ -0,0 +1,36 @@
+# This is a basic workflow to help you get started with Actions
+
+name: Algolia crawler for stage
+
+on:
+ workflow_dispatch:
+ inputs:
+ environment:
+ description: 'Environment you want to run'
+ required: true
+ default: 'https://staging.lambdatestinternal.com/'
+
+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
+jobs:
+ # This workflow contains a single job called "build"
+ build:
+ # The type of runner that the job will run on
+ runs-on: ubuntu-latest
+ environment: stage
+ # Steps represent a sequence of tasks that will be executed as part of the job
+ steps:
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
+ - uses: actions/checkout@v2
+
+ # Runs a set of commands using the runners shell
+ - name: 'Create env file'
+ run: |
+ touch .env
+ echo "APPLICATION_ID=${{ secrets.APPLICATION_ID }}" >> .env
+ echo "API_KEY=${{ secrets.API_KEY }}" >> .env
+
+ - name: Run algolia crawler on stage website
+ run: |
+ cat algolia_config.json
+ docker run -i --env-file=.env -e "CONFIG=$(cat algolia_config.json | jq -r tostring)" algolia/docsearch-scraper
+
diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml
new file mode 100644
index 00000000..ff5eca88
--- /dev/null
+++ b/.github/workflows/deployment.yml
@@ -0,0 +1,65 @@
+name: 'Deployment (Stage)'
+on:
+ workflow_dispatch:
+
+jobs:
+ Docusaurus:
+ name: 'Deployment'
+ runs-on: ubuntu-latest
+ environment: stage
+
+ steps:
+
+ - uses: actions/checkout@v2
+ - name: echo env vars
+ run: echo ${{ secrets.PROD_WEBSITE_URL }}
+ - name: Find and Replace
+ uses: jacobtomlinson/gha-find-replace@2.0.0
+ with:
+ find: ${{ secrets.PROD_WEBSITE_URL }}
+ replace: ${{ secrets.STAGE_WEBSITE_URL }}
+
+ - uses: actions/checkout@v2
+ - name: Find and Replace
+ uses: jacobtomlinson/gha-find-replace@2.0.0
+ with:
+ find: "indexName: '${{ secrets.PROD_INDEX }}',"
+ replace: "indexName: '${{ secrets.STAGE_INDEX }}',"
+
+ - name: Configure AWS Credentials
+ uses: aws-actions/configure-aws-credentials@v1
+ with:
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_DOCS_STAGING }}
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_DOCS_STAGING }}
+ aws-region: us-east-1
+
+ - name: 'Create env file'
+ run: |
+ touch .env
+ echo "HOST=${{ secrets.TYPESENSE_HOST }}" >> .env
+ echo "API=${{ secrets.PUBLIC_APY_TYPESENSE }}" >> .env
+
+
+ - name: Use Node.js 20.10.x
+ uses: actions/setup-node@v3
+ with:
+ node-version: 20.10.x
+
+ - run: npm -v && node -v
+ - run: npm install --legacy-peer-deps && npm run build
+ env:
+ CI: false
+
+ - name: Copy files to the test website with the AWS CLI
+ run: |
+ cp -R assets/ build/
+ cd build/
+ aws s3 cp . s3://lambdatest-stage-docs/support/ --recursive
+ sleep 90;
+ - name: Cloudflare Invalidation
+ run: |
+ curl -X POST "https://api.cloudflare.com/client/v4/zones/$%7B%7B%20secrets.CLOUDFLARE_ZONE_ID%20%7D%7D/purge_cache" -H "X-Auth-Email: ${{ secrets.CF_ACCOUNT }}" -H "X-Auth-Key: ${{ secrets.CF_API_SECRET }}" -H "Content-Type: application/json" --data '{"hosts":["${{ secrets.STAGE_WEBSITE_URL }}"] }'
+
+ - name: Sleep Invalidation
+ run: |
+ sleep 10;
diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index 5a5d2a86..96f5b5d0 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -4,7 +4,7 @@ name: Pull Request Checks
on:
pull_request:
branches:
- - main
+ - stage
merge_group:
jobs:
@@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-20.04
env:
CI: true
- NODE_ENV: prod
+ NODE_ENV: stage
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
@@ -38,6 +38,6 @@ jobs:
- uses: codespell-project/actions-codespell@master
name: Check spelling
with:
- skip: "*.svg,*.js,*.map,*.css,*.scss"
- ignore_words_list: "aks,atleast,cros,ddress,fiel,ist,nd,ot,pullrequest,ser,shttp,wast,fo,seldomly,delt,cruzer,plack,secur,te,testng,TestNG,FLE,Nome,softwares"
+ skip: "*.svg,*.js,*.map,*.css,*.scss,*.webp"
+ ignore_words_list: aks,atleast,cros,ddress,fiel,ist,nd,ot,pullrequest,ser,shttp,wast,fo,tht,extention,seldomly,delt,cruzer,plack,secur,te,testng,TestNG,FLE,fle,afterAll,afterall,Nome,nome,lod,pressEnter,pressenter,softwares
path: docs
\ No newline at end of file
diff --git a/.github/workflows/typesense-crawler-prod.yml b/.github/workflows/typesense-crawler-prod.yml
new file mode 100644
index 00000000..827f7896
--- /dev/null
+++ b/.github/workflows/typesense-crawler-prod.yml
@@ -0,0 +1,42 @@
+name: Typesense crawler for prod
+
+on:
+ pull_request:
+ branches:
+ - main
+ merge_group:
+
+
+jobs:
+ build:
+ # The type of runner that the job will run on
+ runs-on: ubuntu-latest
+ environment: main
+ steps:
+ - name: Checkout Repository
+ uses: actions/checkout@v3 # You MUST checkout your repository first!
+
+ - name: Run DocSearch Scraper
+ env:
+ API_KEY: ${{ secrets.TYPESENSE_API_KEY }}
+ HOST: ${{ secrets.TYPESENSE_HOST }}
+ uses: celsiusnarhwal/typesense-scraper@v2
+ with:
+ # The secret containing your Typesense API key. Required.
+ api-key: ${{ secrets.TYPESENSE_API_KEY }}
+
+ # The hostname or IP address of your Typesense server. Required.
+ host: ${{ secrets.TYPESENSE_HOST }}
+
+ # The port on which your Typesense server is listening. Optional. Default: 8108.
+ port: 443
+
+ # The protocol to use when connecting to your Typesense server. Optional. Default: http.
+ protocol: https
+
+ # The path to your DocSearch config file. Optional. Default: docsearch.config.json.
+ config: config.json
+
+ # run: |
+ # cat config.json
+ # docker run -it --env-file=.env -e "CONFIG=$(cat config.json | jq -r tostring)" typesense/docsearch-scraper:0.9.1
diff --git a/.github/workflows/typesense-crawler-stage.yml b/.github/workflows/typesense-crawler-stage.yml
new file mode 100644
index 00000000..97a86bc0
--- /dev/null
+++ b/.github/workflows/typesense-crawler-stage.yml
@@ -0,0 +1,41 @@
+name: Typesense crawler for stage
+
+on:
+ push:
+ pull_request:
+ branches:
+ - stage
+
+jobs:
+ build:
+ # The type of runner that the job will run on
+ runs-on: ubuntu-latest
+ # environment: stage
+ steps:
+ - name: Checkout Repository
+ uses: actions/checkout@v3 # You MUST checkout your repository first!
+
+ - name: Run DocSearch Scraper
+ # env:
+ # API_KEY: ${{ secrets.TYPESENSE_API_KEY }}
+ # HOST: ${{ secrets.TYPESENSE_HOST }}
+ uses: celsiusnarhwal/typesense-scraper@v2
+ with:
+ # The secret containing your Typesense API key. Required.
+ api-key: ${{ secrets.TYPESENSE_API_KEY }}
+
+ # The hostname or IP address of your Typesense server. Required.
+ host: ${{ secrets.TYPESENSE_HOST }}
+
+ # The port on which your Typesense server is listening. Optional. Default: 8108.
+ port: 443
+
+ # The protocol to use when connecting to your Typesense server. Optional. Default: http.
+ protocol: https
+
+ # The path to your DocSearch config file. Optional. Default: docsearch.config.json.
+ config: config.json
+
+ # run: |
+ # cat config.json
+ # docker run -it --env-file=.env -e "CONFIG=$(cat config.json | jq -r tostring)" typesense/docsearch-scraper:0.9.1
diff --git a/assets/images/accessibility-testing/1.png b/assets/images/accessibility-testing/1.png
new file mode 100644
index 00000000..800e8123
Binary files /dev/null and b/assets/images/accessibility-testing/1.png differ
diff --git a/assets/images/accessibility-testing/2.png b/assets/images/accessibility-testing/2.png
new file mode 100644
index 00000000..fe496986
Binary files /dev/null and b/assets/images/accessibility-testing/2.png differ
diff --git a/assets/images/accessibility-testing/3.png b/assets/images/accessibility-testing/3.png
new file mode 100644
index 00000000..9bf711ed
Binary files /dev/null and b/assets/images/accessibility-testing/3.png differ
diff --git a/assets/images/accessibility-testing/accessibility-automation.png b/assets/images/accessibility-testing/accessibility-automation.png
new file mode 100644
index 00000000..c5bb4799
Binary files /dev/null and b/assets/images/accessibility-testing/accessibility-automation.png differ
diff --git a/assets/images/accessibility-testing/accessibility-scheduling.mp4 b/assets/images/accessibility-testing/accessibility-scheduling.mp4
new file mode 100644
index 00000000..f014c453
Binary files /dev/null and b/assets/images/accessibility-testing/accessibility-scheduling.mp4 differ
diff --git a/assets/images/accessibility-testing/cypress/cypressv10.png b/assets/images/accessibility-testing/cypress/cypressv10.png
new file mode 100644
index 00000000..075e630d
Binary files /dev/null and b/assets/images/accessibility-testing/cypress/cypressv10.png differ
diff --git a/assets/images/accessibility-testing/cypress/cypressv9.png b/assets/images/accessibility-testing/cypress/cypressv9.png
new file mode 100644
index 00000000..4eb9e962
Binary files /dev/null and b/assets/images/accessibility-testing/cypress/cypressv9.png differ
diff --git a/assets/images/accessibility-testing/cypress/hyp-cyp10.gif b/assets/images/accessibility-testing/cypress/hyp-cyp10.gif
new file mode 100644
index 00000000..839b66c8
Binary files /dev/null and b/assets/images/accessibility-testing/cypress/hyp-cyp10.gif differ
diff --git a/assets/images/accessibility-testing/cypress/hyp-cyp9.png b/assets/images/accessibility-testing/cypress/hyp-cyp9.png
new file mode 100644
index 00000000..88ef3b06
Binary files /dev/null and b/assets/images/accessibility-testing/cypress/hyp-cyp9.png differ
diff --git a/assets/images/accessibility-testing/dashboard/1.png b/assets/images/accessibility-testing/dashboard/1.png
new file mode 100644
index 00000000..cd96f73d
Binary files /dev/null and b/assets/images/accessibility-testing/dashboard/1.png differ
diff --git a/assets/images/accessibility-testing/dashboard/10.png b/assets/images/accessibility-testing/dashboard/10.png
new file mode 100644
index 00000000..95ca96ad
Binary files /dev/null and b/assets/images/accessibility-testing/dashboard/10.png differ
diff --git a/assets/images/accessibility-testing/dashboard/2.png b/assets/images/accessibility-testing/dashboard/2.png
new file mode 100644
index 00000000..837c2293
Binary files /dev/null and b/assets/images/accessibility-testing/dashboard/2.png differ
diff --git a/assets/images/accessibility-testing/dashboard/3.png b/assets/images/accessibility-testing/dashboard/3.png
new file mode 100644
index 00000000..9aeae0c3
Binary files /dev/null and b/assets/images/accessibility-testing/dashboard/3.png differ
diff --git a/assets/images/accessibility-testing/dashboard/4.png b/assets/images/accessibility-testing/dashboard/4.png
new file mode 100644
index 00000000..3e100147
Binary files /dev/null and b/assets/images/accessibility-testing/dashboard/4.png differ
diff --git a/assets/images/accessibility-testing/dashboard/5.png b/assets/images/accessibility-testing/dashboard/5.png
new file mode 100644
index 00000000..050d843e
Binary files /dev/null and b/assets/images/accessibility-testing/dashboard/5.png differ
diff --git a/assets/images/accessibility-testing/dashboard/6.png b/assets/images/accessibility-testing/dashboard/6.png
new file mode 100644
index 00000000..5662ca6d
Binary files /dev/null and b/assets/images/accessibility-testing/dashboard/6.png differ
diff --git a/assets/images/accessibility-testing/dashboard/7.png b/assets/images/accessibility-testing/dashboard/7.png
new file mode 100644
index 00000000..f1cecb8a
Binary files /dev/null and b/assets/images/accessibility-testing/dashboard/7.png differ
diff --git a/assets/images/accessibility-testing/dashboard/8.png b/assets/images/accessibility-testing/dashboard/8.png
new file mode 100644
index 00000000..d1aea032
Binary files /dev/null and b/assets/images/accessibility-testing/dashboard/8.png differ
diff --git a/assets/images/accessibility-testing/dashboard/9.png b/assets/images/accessibility-testing/dashboard/9.png
new file mode 100644
index 00000000..bba6482c
Binary files /dev/null and b/assets/images/accessibility-testing/dashboard/9.png differ
diff --git a/assets/images/accessibility-testing/download.png b/assets/images/accessibility-testing/download.png
new file mode 100644
index 00000000..803dd3f7
Binary files /dev/null and b/assets/images/accessibility-testing/download.png differ
diff --git a/assets/images/accessibility-testing/full-page-scanner/1.png b/assets/images/accessibility-testing/full-page-scanner/1.png
new file mode 100644
index 00000000..7eae6edf
Binary files /dev/null and b/assets/images/accessibility-testing/full-page-scanner/1.png differ
diff --git a/assets/images/accessibility-testing/full-page-scanner/2.png b/assets/images/accessibility-testing/full-page-scanner/2.png
new file mode 100644
index 00000000..16ce213d
Binary files /dev/null and b/assets/images/accessibility-testing/full-page-scanner/2.png differ
diff --git a/assets/images/accessibility-testing/hyp-selenium.gif b/assets/images/accessibility-testing/hyp-selenium.gif
new file mode 100644
index 00000000..da50046f
Binary files /dev/null and b/assets/images/accessibility-testing/hyp-selenium.gif differ
diff --git a/assets/images/accessibility-testing/multi-page-scanner/1.png b/assets/images/accessibility-testing/multi-page-scanner/1.png
new file mode 100644
index 00000000..05346827
Binary files /dev/null and b/assets/images/accessibility-testing/multi-page-scanner/1.png differ
diff --git a/assets/images/accessibility-testing/multi-page-scanner/2.png b/assets/images/accessibility-testing/multi-page-scanner/2.png
new file mode 100644
index 00000000..2cc8cac1
Binary files /dev/null and b/assets/images/accessibility-testing/multi-page-scanner/2.png differ
diff --git a/assets/images/accessibility-testing/multi-page-scanner/3.png b/assets/images/accessibility-testing/multi-page-scanner/3.png
new file mode 100644
index 00000000..4cf91b35
Binary files /dev/null and b/assets/images/accessibility-testing/multi-page-scanner/3.png differ
diff --git a/assets/images/accessibility-testing/multi-page-scanner/4.png b/assets/images/accessibility-testing/multi-page-scanner/4.png
new file mode 100644
index 00000000..5954186c
Binary files /dev/null and b/assets/images/accessibility-testing/multi-page-scanner/4.png differ
diff --git a/assets/images/accessibility-testing/partial-page-scanner/1.png b/assets/images/accessibility-testing/partial-page-scanner/1.png
new file mode 100644
index 00000000..2ac8d3c5
Binary files /dev/null and b/assets/images/accessibility-testing/partial-page-scanner/1.png differ
diff --git a/assets/images/accessibility-testing/partial-page-scanner/2.png b/assets/images/accessibility-testing/partial-page-scanner/2.png
new file mode 100644
index 00000000..327a87fd
Binary files /dev/null and b/assets/images/accessibility-testing/partial-page-scanner/2.png differ
diff --git a/assets/images/accessibility-testing/partial-page-scanner/3.png b/assets/images/accessibility-testing/partial-page-scanner/3.png
new file mode 100644
index 00000000..474bc0f3
Binary files /dev/null and b/assets/images/accessibility-testing/partial-page-scanner/3.png differ
diff --git a/assets/images/accessibility-testing/playwright/playwright-accessibility.png b/assets/images/accessibility-testing/playwright/playwright-accessibility.png
new file mode 100644
index 00000000..81a29960
Binary files /dev/null and b/assets/images/accessibility-testing/playwright/playwright-accessibility.png differ
diff --git a/assets/images/accessibility-testing/schedule-scan/1.png b/assets/images/accessibility-testing/schedule-scan/1.png
new file mode 100644
index 00000000..bdf4011a
Binary files /dev/null and b/assets/images/accessibility-testing/schedule-scan/1.png differ
diff --git a/assets/images/accessibility-testing/schedule-scan/2.png b/assets/images/accessibility-testing/schedule-scan/2.png
new file mode 100644
index 00000000..11feedc9
Binary files /dev/null and b/assets/images/accessibility-testing/schedule-scan/2.png differ
diff --git a/assets/images/accessibility-testing/schedule-scan/3.1.png b/assets/images/accessibility-testing/schedule-scan/3.1.png
new file mode 100644
index 00000000..f715a464
Binary files /dev/null and b/assets/images/accessibility-testing/schedule-scan/3.1.png differ
diff --git a/assets/images/accessibility-testing/schedule-scan/3.2.png b/assets/images/accessibility-testing/schedule-scan/3.2.png
new file mode 100644
index 00000000..a058378a
Binary files /dev/null and b/assets/images/accessibility-testing/schedule-scan/3.2.png differ
diff --git a/assets/images/accessibility-testing/schedule-scan/3.3.png b/assets/images/accessibility-testing/schedule-scan/3.3.png
new file mode 100644
index 00000000..44332771
Binary files /dev/null and b/assets/images/accessibility-testing/schedule-scan/3.3.png differ
diff --git a/assets/images/accessibility-testing/schedule-scan/3.4.png b/assets/images/accessibility-testing/schedule-scan/3.4.png
new file mode 100644
index 00000000..3a235bab
Binary files /dev/null and b/assets/images/accessibility-testing/schedule-scan/3.4.png differ
diff --git a/assets/images/accessibility-testing/schedule-scan/4.png b/assets/images/accessibility-testing/schedule-scan/4.png
new file mode 100644
index 00000000..5f562fd1
Binary files /dev/null and b/assets/images/accessibility-testing/schedule-scan/4.png differ
diff --git a/assets/images/accessibility-testing/schedule-scan/5.png b/assets/images/accessibility-testing/schedule-scan/5.png
new file mode 100644
index 00000000..55ab86e4
Binary files /dev/null and b/assets/images/accessibility-testing/schedule-scan/5.png differ
diff --git a/assets/images/accessibility-testing/schedule-scan/6.png b/assets/images/accessibility-testing/schedule-scan/6.png
new file mode 100644
index 00000000..6804bec3
Binary files /dev/null and b/assets/images/accessibility-testing/schedule-scan/6.png differ
diff --git a/assets/images/accessibility-testing/schedule-scan/7.png b/assets/images/accessibility-testing/schedule-scan/7.png
new file mode 100644
index 00000000..86ef2ac3
Binary files /dev/null and b/assets/images/accessibility-testing/schedule-scan/7.png differ
diff --git a/assets/images/accessibility-testing/screen-reader/output.mp4 b/assets/images/accessibility-testing/screen-reader/output.mp4
new file mode 100644
index 00000000..59e41097
Binary files /dev/null and b/assets/images/accessibility-testing/screen-reader/output.mp4 differ
diff --git a/assets/images/accessibility-testing/settings/1.png b/assets/images/accessibility-testing/settings/1.png
new file mode 100644
index 00000000..1ded0ebe
Binary files /dev/null and b/assets/images/accessibility-testing/settings/1.png differ
diff --git a/assets/images/accessibility-testing/settings/2.png b/assets/images/accessibility-testing/settings/2.png
new file mode 100644
index 00000000..51345d05
Binary files /dev/null and b/assets/images/accessibility-testing/settings/2.png differ
diff --git a/assets/images/accessibility-testing/settings/3.png b/assets/images/accessibility-testing/settings/3.png
new file mode 100644
index 00000000..cd60099d
Binary files /dev/null and b/assets/images/accessibility-testing/settings/3.png differ
diff --git a/assets/images/accessibility-testing/settings/4.png b/assets/images/accessibility-testing/settings/4.png
new file mode 100644
index 00000000..23aca590
Binary files /dev/null and b/assets/images/accessibility-testing/settings/4.png differ
diff --git a/assets/images/accessibility-testing/settings/5.png b/assets/images/accessibility-testing/settings/5.png
new file mode 100644
index 00000000..1baced9e
Binary files /dev/null and b/assets/images/accessibility-testing/settings/5.png differ
diff --git a/assets/images/accessibility-testing/settings/6.png b/assets/images/accessibility-testing/settings/6.png
new file mode 100644
index 00000000..4e59ec8d
Binary files /dev/null and b/assets/images/accessibility-testing/settings/6.png differ
diff --git a/assets/images/accessibility-testing/workflow-scanner/1.png b/assets/images/accessibility-testing/workflow-scanner/1.png
new file mode 100644
index 00000000..1118a21c
Binary files /dev/null and b/assets/images/accessibility-testing/workflow-scanner/1.png differ
diff --git a/assets/images/accessibility-testing/workflow-scanner/2.png b/assets/images/accessibility-testing/workflow-scanner/2.png
new file mode 100644
index 00000000..f3646c7b
Binary files /dev/null and b/assets/images/accessibility-testing/workflow-scanner/2.png differ
diff --git a/assets/images/analytics/Custom-Dashboard-Name.webp b/assets/images/analytics/Custom-Dashboard-Name.webp
new file mode 100644
index 00000000..0a05e38c
Binary files /dev/null and b/assets/images/analytics/Custom-Dashboard-Name.webp differ
diff --git a/assets/images/analytics/Custom-Dashboard.webp b/assets/images/analytics/Custom-Dashboard.webp
new file mode 100644
index 00000000..fc6737b9
Binary files /dev/null and b/assets/images/analytics/Custom-Dashboard.webp differ
diff --git a/assets/images/analytics/Dashboard-Template.webp b/assets/images/analytics/Dashboard-Template.webp
new file mode 100644
index 00000000..7a467935
Binary files /dev/null and b/assets/images/analytics/Dashboard-Template.webp differ
diff --git a/assets/images/analytics/Demo-Dashboard-with-Widget.webp b/assets/images/analytics/Demo-Dashboard-with-Widget.webp
new file mode 100644
index 00000000..65285e1a
Binary files /dev/null and b/assets/images/analytics/Demo-Dashboard-with-Widget.webp differ
diff --git a/assets/images/analytics/Demo-Dashboard.webp b/assets/images/analytics/Demo-Dashboard.webp
new file mode 100644
index 00000000..ea21303f
Binary files /dev/null and b/assets/images/analytics/Demo-Dashboard.webp differ
diff --git a/assets/images/analytics/On-Boarding.webp b/assets/images/analytics/On-Boarding.webp
new file mode 100644
index 00000000..36d23227
Binary files /dev/null and b/assets/images/analytics/On-Boarding.webp differ
diff --git a/assets/images/analytics/analytics-regex-main.webp b/assets/images/analytics/analytics-regex-main.webp
new file mode 100644
index 00000000..faf0c4d9
Binary files /dev/null and b/assets/images/analytics/analytics-regex-main.webp differ
diff --git a/assets/images/analytics/analytics-regex-preview.webp b/assets/images/analytics/analytics-regex-preview.webp
new file mode 100644
index 00000000..0329bf30
Binary files /dev/null and b/assets/images/analytics/analytics-regex-preview.webp differ
diff --git a/assets/images/analytics/analytics-regex-view.webp b/assets/images/analytics/analytics-regex-view.webp
new file mode 100644
index 00000000..9b76862b
Binary files /dev/null and b/assets/images/analytics/analytics-regex-view.webp differ
diff --git a/assets/images/analytics/analytics-usage-report-dashboard.webp b/assets/images/analytics/analytics-usage-report-dashboard.webp
new file mode 100644
index 00000000..2dcca46c
Binary files /dev/null and b/assets/images/analytics/analytics-usage-report-dashboard.webp differ
diff --git a/assets/images/analytics/analytics-widget-export-csv.webp b/assets/images/analytics/analytics-widget-export-csv.webp
new file mode 100644
index 00000000..0196f55a
Binary files /dev/null and b/assets/images/analytics/analytics-widget-export-csv.webp differ
diff --git a/assets/images/analytics/analytics-widget-export-drill-down.webp b/assets/images/analytics/analytics-widget-export-drill-down.webp
new file mode 100644
index 00000000..2c563d16
Binary files /dev/null and b/assets/images/analytics/analytics-widget-export-drill-down.webp differ
diff --git a/assets/images/analytics/analytics-widget-export-pdf.webp b/assets/images/analytics/analytics-widget-export-pdf.webp
new file mode 100644
index 00000000..0d28bd4c
Binary files /dev/null and b/assets/images/analytics/analytics-widget-export-pdf.webp differ
diff --git a/assets/images/analytics/api-suite-health.webp b/assets/images/analytics/api-suite-health.webp
new file mode 100644
index 00000000..f6d4da39
Binary files /dev/null and b/assets/images/analytics/api-suite-health.webp differ
diff --git a/assets/images/analytics/api-test-report.webp b/assets/images/analytics/api-test-report.webp
new file mode 100644
index 00000000..709d6767
Binary files /dev/null and b/assets/images/analytics/api-test-report.webp differ
diff --git a/assets/images/analytics/api-test-status.webp b/assets/images/analytics/api-test-status.webp
new file mode 100644
index 00000000..b39734da
Binary files /dev/null and b/assets/images/analytics/api-test-status.webp differ
diff --git a/assets/images/analytics/api-test-trends.webp b/assets/images/analytics/api-test-trends.webp
new file mode 100644
index 00000000..40eb7fa2
Binary files /dev/null and b/assets/images/analytics/api-test-trends.webp differ
diff --git a/assets/images/analytics/api-tests-health.webp b/assets/images/analytics/api-tests-health.webp
new file mode 100644
index 00000000..ca5bd653
Binary files /dev/null and b/assets/images/analytics/api-tests-health.webp differ
diff --git a/assets/images/analytics/api-time-trends.webp b/assets/images/analytics/api-time-trends.webp
new file mode 100644
index 00000000..aa3e313e
Binary files /dev/null and b/assets/images/analytics/api-time-trends.webp differ
diff --git a/assets/images/analytics/astt-widgets.webp b/assets/images/analytics/astt-widgets.webp
new file mode 100644
index 00000000..a45d5087
Binary files /dev/null and b/assets/images/analytics/astt-widgets.webp differ
diff --git a/assets/images/analytics/atx-usage-by-groups.webp b/assets/images/analytics/atx-usage-by-groups.webp
new file mode 100644
index 00000000..581ec35d
Binary files /dev/null and b/assets/images/analytics/atx-usage-by-groups.webp differ
diff --git a/assets/images/analytics/dashboard-copilot-chat-response.webp b/assets/images/analytics/dashboard-copilot-chat-response.webp
new file mode 100644
index 00000000..3e7cacc0
Binary files /dev/null and b/assets/images/analytics/dashboard-copilot-chat-response.webp differ
diff --git a/assets/images/analytics/dashboard-copilot-chat-window.webp b/assets/images/analytics/dashboard-copilot-chat-window.webp
new file mode 100644
index 00000000..3b307d15
Binary files /dev/null and b/assets/images/analytics/dashboard-copilot-chat-window.webp differ
diff --git a/assets/images/analytics/dashboard-copilot-main.webp b/assets/images/analytics/dashboard-copilot-main.webp
new file mode 100644
index 00000000..0b1e45c3
Binary files /dev/null and b/assets/images/analytics/dashboard-copilot-main.webp differ
diff --git a/assets/images/analytics/on-boarding-analytics.webp b/assets/images/analytics/on-boarding-analytics.webp
new file mode 100644
index 00000000..8176e285
Binary files /dev/null and b/assets/images/analytics/on-boarding-analytics.webp differ
diff --git a/assets/images/analytics/sub-orgs-concurrency-trends.webp b/assets/images/analytics/sub-orgs-concurrency-trends.webp
new file mode 100644
index 00000000..d45f2d1f
Binary files /dev/null and b/assets/images/analytics/sub-orgs-concurrency-trends.webp differ
diff --git a/assets/images/analytics/sub-orgs-main.webp b/assets/images/analytics/sub-orgs-main.webp
new file mode 100644
index 00000000..b3726a83
Binary files /dev/null and b/assets/images/analytics/sub-orgs-main.webp differ
diff --git a/assets/images/analytics/sub-orgs-onboarding.webp b/assets/images/analytics/sub-orgs-onboarding.webp
new file mode 100644
index 00000000..a1f3ca60
Binary files /dev/null and b/assets/images/analytics/sub-orgs-onboarding.webp differ
diff --git a/assets/images/analytics/sub-orgs-test-trends.webp b/assets/images/analytics/sub-orgs-test-trends.webp
new file mode 100644
index 00000000..2987c6e6
Binary files /dev/null and b/assets/images/analytics/sub-orgs-test-trends.webp differ
diff --git a/assets/images/analytics/tms-widgets-dashboard.webp b/assets/images/analytics/tms-widgets-dashboard.webp
new file mode 100644
index 00000000..8d5d92e2
Binary files /dev/null and b/assets/images/analytics/tms-widgets-dashboard.webp differ
diff --git a/assets/images/app-automation/Group2.png b/assets/images/app-automation/Group2.png
deleted file mode 100644
index d81fdc2c..00000000
Binary files a/assets/images/app-automation/Group2.png and /dev/null differ
diff --git a/assets/images/app-automation/image21.png b/assets/images/app-automation/image21.png
deleted file mode 100644
index a6d305d7..00000000
Binary files a/assets/images/app-automation/image21.png and /dev/null differ
diff --git a/assets/images/app-automation/ipgeolocation.png b/assets/images/app-automation/ipgeolocation.png
new file mode 100644
index 00000000..0c2361f7
Binary files /dev/null and b/assets/images/app-automation/ipgeolocation.png differ
diff --git a/assets/images/app-automation/uploadmedia.png b/assets/images/app-automation/uploadmedia.png
new file mode 100644
index 00000000..4d2a6212
Binary files /dev/null and b/assets/images/app-automation/uploadmedia.png differ
diff --git a/assets/images/appium-app/2.png b/assets/images/appium-app/2.png
deleted file mode 100644
index a10ed8ae..00000000
Binary files a/assets/images/appium-app/2.png and /dev/null differ
diff --git a/assets/images/appium-app/app-profiling-api-result.png b/assets/images/appium-app/app-profiling-api-result.png
new file mode 100644
index 00000000..2ec10409
Binary files /dev/null and b/assets/images/appium-app/app-profiling-api-result.png differ
diff --git a/assets/images/appium-app/app-profiling.png b/assets/images/appium-app/app-profiling.png
new file mode 100644
index 00000000..112a3930
Binary files /dev/null and b/assets/images/appium-app/app-profiling.png differ
diff --git a/assets/images/appium-app/application/automation-upload.gif b/assets/images/appium-app/application/automation-upload.gif
new file mode 100644
index 00000000..0353cbdc
Binary files /dev/null and b/assets/images/appium-app/application/automation-upload.gif differ
diff --git a/assets/images/appium-app/application/real-device-upload.gif b/assets/images/appium-app/application/real-device-upload.gif
new file mode 100644
index 00000000..b3f762ec
Binary files /dev/null and b/assets/images/appium-app/application/real-device-upload.gif differ
diff --git a/assets/images/appium-app/battery.png b/assets/images/appium-app/battery.png
new file mode 100644
index 00000000..d8f3920c
Binary files /dev/null and b/assets/images/appium-app/battery.png differ
diff --git a/assets/images/appium-app/cpu.png b/assets/images/appium-app/cpu.png
new file mode 100644
index 00000000..9697ed69
Binary files /dev/null and b/assets/images/appium-app/cpu.png differ
diff --git a/assets/images/appium-app/disk.png b/assets/images/appium-app/disk.png
new file mode 100644
index 00000000..a7a078a4
Binary files /dev/null and b/assets/images/appium-app/disk.png differ
diff --git a/assets/images/appium-app/memory.png b/assets/images/appium-app/memory.png
new file mode 100644
index 00000000..c3616dee
Binary files /dev/null and b/assets/images/appium-app/memory.png differ
diff --git a/assets/images/appium-app/meta-data.png b/assets/images/appium-app/meta-data.png
new file mode 100644
index 00000000..6259dfff
Binary files /dev/null and b/assets/images/appium-app/meta-data.png differ
diff --git a/assets/images/appium-app/network.png b/assets/images/appium-app/network.png
new file mode 100644
index 00000000..be5e7169
Binary files /dev/null and b/assets/images/appium-app/network.png differ
diff --git a/assets/images/appium-app/rendering.png b/assets/images/appium-app/rendering.png
new file mode 100644
index 00000000..a887ce50
Binary files /dev/null and b/assets/images/appium-app/rendering.png differ
diff --git a/assets/images/appium-app/temperature.png b/assets/images/appium-app/temperature.png
new file mode 100644
index 00000000..50c8253f
Binary files /dev/null and b/assets/images/appium-app/temperature.png differ
diff --git a/assets/images/auth_lt.png b/assets/images/auth_lt.png
new file mode 100644
index 00000000..d282a631
Binary files /dev/null and b/assets/images/auth_lt.png differ
diff --git a/assets/images/automation/automation.png b/assets/images/automation/automation.png
new file mode 100644
index 00000000..581a1e57
Binary files /dev/null and b/assets/images/automation/automation.png differ
diff --git a/assets/images/azure-devops-integration/assistant.png b/assets/images/azure-devops-integration/assistant.png
new file mode 100644
index 00000000..b26b5c2f
Binary files /dev/null and b/assets/images/azure-devops-integration/assistant.png differ
diff --git a/assets/images/azure-devops-integration/assistantSearch.png b/assets/images/azure-devops-integration/assistantSearch.png
new file mode 100644
index 00000000..dcc754e5
Binary files /dev/null and b/assets/images/azure-devops-integration/assistantSearch.png differ
diff --git a/assets/images/biometric-authentication/biometric-authentication.png b/assets/images/biometric-authentication/biometric-authentication.png
deleted file mode 100644
index 84f768d5..00000000
Binary files a/assets/images/biometric-authentication/biometric-authentication.png and /dev/null differ
diff --git a/assets/images/bugherd-integration/Capture15.webp b/assets/images/bugherd-integration/Capture15.webp
deleted file mode 100644
index e31f6a3e..00000000
Binary files a/assets/images/bugherd-integration/Capture15.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/bugherd-integration-1.webp b/assets/images/bugherd-integration/bugherd-integration-1.webp
deleted file mode 100644
index bc7bac10..00000000
Binary files a/assets/images/bugherd-integration/bugherd-integration-1.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/bugherd-integration-10.webp b/assets/images/bugherd-integration/bugherd-integration-10.webp
deleted file mode 100644
index ed425101..00000000
Binary files a/assets/images/bugherd-integration/bugherd-integration-10.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/bugherd-integration-11.webp b/assets/images/bugherd-integration/bugherd-integration-11.webp
deleted file mode 100644
index 259dc355..00000000
Binary files a/assets/images/bugherd-integration/bugherd-integration-11.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/bugherd-integration-12.webp b/assets/images/bugherd-integration/bugherd-integration-12.webp
deleted file mode 100644
index cc8de1f9..00000000
Binary files a/assets/images/bugherd-integration/bugherd-integration-12.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/bugherd-integration-2.webp b/assets/images/bugherd-integration/bugherd-integration-2.webp
deleted file mode 100644
index f42ec29d..00000000
Binary files a/assets/images/bugherd-integration/bugherd-integration-2.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/bugherd-integration-3.webp b/assets/images/bugherd-integration/bugherd-integration-3.webp
deleted file mode 100644
index 2550b43d..00000000
Binary files a/assets/images/bugherd-integration/bugherd-integration-3.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/bugherd-integration-4.webp b/assets/images/bugherd-integration/bugherd-integration-4.webp
deleted file mode 100644
index f7285846..00000000
Binary files a/assets/images/bugherd-integration/bugherd-integration-4.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/bugherd-integration-5.webp b/assets/images/bugherd-integration/bugherd-integration-5.webp
deleted file mode 100644
index 7b196f35..00000000
Binary files a/assets/images/bugherd-integration/bugherd-integration-5.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/bugherd-integration-6.webp b/assets/images/bugherd-integration/bugherd-integration-6.webp
deleted file mode 100644
index d834a3d8..00000000
Binary files a/assets/images/bugherd-integration/bugherd-integration-6.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/bugherd-integration-7.webp b/assets/images/bugherd-integration/bugherd-integration-7.webp
deleted file mode 100644
index dcc0fbc3..00000000
Binary files a/assets/images/bugherd-integration/bugherd-integration-7.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/bugherd-integration-8.webp b/assets/images/bugherd-integration/bugherd-integration-8.webp
deleted file mode 100644
index 2f17fbac..00000000
Binary files a/assets/images/bugherd-integration/bugherd-integration-8.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/bugherd-integration-9.webp b/assets/images/bugherd-integration/bugherd-integration-9.webp
deleted file mode 100644
index 8eb21f17..00000000
Binary files a/assets/images/bugherd-integration/bugherd-integration-9.webp and /dev/null differ
diff --git a/assets/images/bugherd-integration/jira-1.webp b/assets/images/bugherd-integration/jira-1.webp
deleted file mode 100644
index bd2fe64f..00000000
Binary files a/assets/images/bugherd-integration/jira-1.webp and /dev/null differ
diff --git a/assets/images/buildkite-integration/yaml/1.png b/assets/images/buildkite-integration/yaml/1.png
new file mode 100644
index 00000000..b014b56a
Binary files /dev/null and b/assets/images/buildkite-integration/yaml/1.png differ
diff --git a/assets/images/buildkite-integration/yaml/2.png b/assets/images/buildkite-integration/yaml/2.png
new file mode 100644
index 00000000..f47a9f1d
Binary files /dev/null and b/assets/images/buildkite-integration/yaml/2.png differ
diff --git a/assets/images/buildkite-integration/yaml/3.png b/assets/images/buildkite-integration/yaml/3.png
new file mode 100644
index 00000000..81dae334
Binary files /dev/null and b/assets/images/buildkite-integration/yaml/3.png differ
diff --git a/assets/images/charles/Charles_RD.png b/assets/images/charles/Charles_RD.png
new file mode 100644
index 00000000..8bb2b434
Binary files /dev/null and b/assets/images/charles/Charles_RD.png differ
diff --git a/assets/images/charles/certificate1.png b/assets/images/charles/certificate1.png
new file mode 100644
index 00000000..45c71828
Binary files /dev/null and b/assets/images/charles/certificate1.png differ
diff --git a/assets/images/charles/certificate2.png b/assets/images/charles/certificate2.png
new file mode 100644
index 00000000..c57e52b3
Binary files /dev/null and b/assets/images/charles/certificate2.png differ
diff --git a/assets/images/charles/certificate3.png b/assets/images/charles/certificate3.png
new file mode 100644
index 00000000..f88da6a3
Binary files /dev/null and b/assets/images/charles/certificate3.png differ
diff --git a/assets/images/charles/real_device_ssl1.png b/assets/images/charles/real_device_ssl1.png
new file mode 100644
index 00000000..ed076f28
Binary files /dev/null and b/assets/images/charles/real_device_ssl1.png differ
diff --git a/assets/images/charles/real_device_ssl2.png b/assets/images/charles/real_device_ssl2.png
new file mode 100644
index 00000000..48b70088
Binary files /dev/null and b/assets/images/charles/real_device_ssl2.png differ
diff --git a/assets/images/charles/real_device_ssl3.png b/assets/images/charles/real_device_ssl3.png
new file mode 100644
index 00000000..0e933b6b
Binary files /dev/null and b/assets/images/charles/real_device_ssl3.png differ
diff --git a/assets/images/charles/underpass2.png b/assets/images/charles/underpass2.png
index a9cd89f7..75655d10 100644
Binary files a/assets/images/charles/underpass2.png and b/assets/images/charles/underpass2.png differ
diff --git a/assets/images/charles/underpass3.png b/assets/images/charles/underpass3.png
index 59359a29..b4b8a3de 100644
Binary files a/assets/images/charles/underpass3.png and b/assets/images/charles/underpass3.png differ
diff --git a/assets/images/codefresh-integration/export_run.png b/assets/images/codefresh-integration/export_run.png
new file mode 100644
index 00000000..de923053
Binary files /dev/null and b/assets/images/codefresh-integration/export_run.png differ
diff --git a/assets/images/codefresh-integration/go_to_pipelines.png b/assets/images/codefresh-integration/go_to_pipelines.png
new file mode 100644
index 00000000..220274cc
Binary files /dev/null and b/assets/images/codefresh-integration/go_to_pipelines.png differ
diff --git a/assets/images/codefresh-integration/lt_dash.png b/assets/images/codefresh-integration/lt_dash.png
new file mode 100644
index 00000000..32118426
Binary files /dev/null and b/assets/images/codefresh-integration/lt_dash.png differ
diff --git a/assets/images/codefresh-integration/pipeline_ruuning.png b/assets/images/codefresh-integration/pipeline_ruuning.png
new file mode 100644
index 00000000..10716326
Binary files /dev/null and b/assets/images/codefresh-integration/pipeline_ruuning.png differ
diff --git a/assets/images/codefresh-integration/select_git.png b/assets/images/codefresh-integration/select_git.png
new file mode 100644
index 00000000..8dd279f8
Binary files /dev/null and b/assets/images/codefresh-integration/select_git.png differ
diff --git a/assets/images/codefresh-integration/workflow.png b/assets/images/codefresh-integration/workflow.png
new file mode 100644
index 00000000..6d470e20
Binary files /dev/null and b/assets/images/codefresh-integration/workflow.png differ
diff --git a/assets/images/cypress/detailed-cypress-logs.png b/assets/images/cypress/detailed-cypress-logs.png
new file mode 100644
index 00000000..20f6d9df
Binary files /dev/null and b/assets/images/cypress/detailed-cypress-logs.png differ
diff --git a/assets/images/debug-espresso-test/4.png b/assets/images/debug-espresso-test/4.png
new file mode 100644
index 00000000..b7365999
Binary files /dev/null and b/assets/images/debug-espresso-test/4.png differ
diff --git a/assets/images/debug-espresso-test/5.png b/assets/images/debug-espresso-test/5.png
new file mode 100644
index 00000000..fe1252b8
Binary files /dev/null and b/assets/images/debug-espresso-test/5.png differ
diff --git a/assets/images/espresso/environment-variable-success.png b/assets/images/espresso/environment-variable-success.png
new file mode 100644
index 00000000..7bfea245
Binary files /dev/null and b/assets/images/espresso/environment-variable-success.png differ
diff --git a/assets/images/espresso/espresso-test.jpeg b/assets/images/espresso/espresso-test.jpeg
new file mode 100644
index 00000000..2c0bbdab
Binary files /dev/null and b/assets/images/espresso/espresso-test.jpeg differ
diff --git a/assets/images/getting-started/Screenshot-2020-12-08-190110-1024x463.webp b/assets/images/getting-started/Screenshot-2020-12-08-190110-1024x463.webp
deleted file mode 100644
index 77c0aa41..00000000
Binary files a/assets/images/getting-started/Screenshot-2020-12-08-190110-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/Screenshot-2020-12-09-024619-1024x441.webp b/assets/images/getting-started/Screenshot-2020-12-09-024619-1024x441.webp
deleted file mode 100644
index abd0a441..00000000
Binary files a/assets/images/getting-started/Screenshot-2020-12-09-024619-1024x441.webp and /dev/null differ
diff --git a/assets/images/getting-started/after-get-started.webp b/assets/images/getting-started/after-get-started.webp
deleted file mode 100644
index 063ac1df..00000000
Binary files a/assets/images/getting-started/after-get-started.webp and /dev/null differ
diff --git a/assets/images/getting-started/appium.jpeg b/assets/images/getting-started/appium.jpeg
new file mode 100644
index 00000000..b94559ee
Binary files /dev/null and b/assets/images/getting-started/appium.jpeg differ
diff --git a/assets/images/getting-started/dashboard.webp b/assets/images/getting-started/dashboard.webp
deleted file mode 100644
index 7b8af0ba..00000000
Binary files a/assets/images/getting-started/dashboard.webp and /dev/null differ
diff --git a/assets/images/getting-started/download-button.webp b/assets/images/getting-started/download-button.webp
deleted file mode 100644
index 34dd91d9..00000000
Binary files a/assets/images/getting-started/download-button.webp and /dev/null differ
diff --git a/assets/images/getting-started/espresso.png b/assets/images/getting-started/espresso.png
new file mode 100644
index 00000000..270a2563
Binary files /dev/null and b/assets/images/getting-started/espresso.png differ
diff --git a/assets/images/getting-started/get-ltcredentials.webp b/assets/images/getting-started/get-ltcredentials.webp
deleted file mode 100644
index 292abace..00000000
Binary files a/assets/images/getting-started/get-ltcredentials.webp and /dev/null differ
diff --git a/assets/images/getting-started/getting-started.webp b/assets/images/getting-started/getting-started.webp
deleted file mode 100644
index 775ed069..00000000
Binary files a/assets/images/getting-started/getting-started.webp and /dev/null differ
diff --git a/assets/images/getting-started/gitpodexecution.png b/assets/images/getting-started/gitpodexecution.png
deleted file mode 100644
index fa92bd68..00000000
Binary files a/assets/images/getting-started/gitpodexecution.png and /dev/null differ
diff --git a/assets/images/getting-started/k6.png b/assets/images/getting-started/k6.png
new file mode 100644
index 00000000..42bc396f
Binary files /dev/null and b/assets/images/getting-started/k6.png differ
diff --git a/assets/images/getting-started/maestro.png b/assets/images/getting-started/maestro.png
new file mode 100644
index 00000000..112db5e2
Binary files /dev/null and b/assets/images/getting-started/maestro.png differ
diff --git a/assets/images/getting-started/next-step.webp b/assets/images/getting-started/next-step.webp
deleted file mode 100644
index 946b62a5..00000000
Binary files a/assets/images/getting-started/next-step.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-1-1024x463.webp b/assets/images/getting-started/onboaring-1-1024x463.webp
deleted file mode 100644
index cdca64c3..00000000
Binary files a/assets/images/getting-started/onboaring-1-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-10-1024x464.webp b/assets/images/getting-started/onboaring-10-1024x464.webp
deleted file mode 100644
index 0ff163dc..00000000
Binary files a/assets/images/getting-started/onboaring-10-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-1024x462.webp b/assets/images/getting-started/onboaring-1024x462.webp
deleted file mode 100644
index e9661e7e..00000000
Binary files a/assets/images/getting-started/onboaring-1024x462.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-11-1024x460.webp b/assets/images/getting-started/onboaring-11-1024x460.webp
deleted file mode 100644
index 56c8bb26..00000000
Binary files a/assets/images/getting-started/onboaring-11-1024x460.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-12-1024x464.webp b/assets/images/getting-started/onboaring-12-1024x464.webp
deleted file mode 100644
index b42e0377..00000000
Binary files a/assets/images/getting-started/onboaring-12-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-13-1024x461.webp b/assets/images/getting-started/onboaring-13-1024x461.webp
deleted file mode 100644
index c08f1a75..00000000
Binary files a/assets/images/getting-started/onboaring-13-1024x461.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-14-1024x460.webp b/assets/images/getting-started/onboaring-14-1024x460.webp
deleted file mode 100644
index 08543b31..00000000
Binary files a/assets/images/getting-started/onboaring-14-1024x460.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-15-1024x463.webp b/assets/images/getting-started/onboaring-15-1024x463.webp
deleted file mode 100644
index e9fbbbfd..00000000
Binary files a/assets/images/getting-started/onboaring-15-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-16-1024x461.webp b/assets/images/getting-started/onboaring-16-1024x461.webp
deleted file mode 100644
index 2342be57..00000000
Binary files a/assets/images/getting-started/onboaring-16-1024x461.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-17-1024x464.webp b/assets/images/getting-started/onboaring-17-1024x464.webp
deleted file mode 100644
index 653ad743..00000000
Binary files a/assets/images/getting-started/onboaring-17-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-18-1024x464.webp b/assets/images/getting-started/onboaring-18-1024x464.webp
deleted file mode 100644
index 7e8e5c81..00000000
Binary files a/assets/images/getting-started/onboaring-18-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-19-1024x463.webp b/assets/images/getting-started/onboaring-19-1024x463.webp
deleted file mode 100644
index f9e3dea1..00000000
Binary files a/assets/images/getting-started/onboaring-19-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-2-1024x464.webp b/assets/images/getting-started/onboaring-2-1024x464.webp
deleted file mode 100644
index 4c79f1ff..00000000
Binary files a/assets/images/getting-started/onboaring-2-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-20-1024x465.webp b/assets/images/getting-started/onboaring-20-1024x465.webp
deleted file mode 100644
index 3884eb0a..00000000
Binary files a/assets/images/getting-started/onboaring-20-1024x465.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-21-1024x461.webp b/assets/images/getting-started/onboaring-21-1024x461.webp
deleted file mode 100644
index ee06462e..00000000
Binary files a/assets/images/getting-started/onboaring-21-1024x461.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-22-1024x460.webp b/assets/images/getting-started/onboaring-22-1024x460.webp
deleted file mode 100644
index 5a1430a2..00000000
Binary files a/assets/images/getting-started/onboaring-22-1024x460.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-23-1024x463.webp b/assets/images/getting-started/onboaring-23-1024x463.webp
deleted file mode 100644
index 4c666109..00000000
Binary files a/assets/images/getting-started/onboaring-23-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-24-1024x463.webp b/assets/images/getting-started/onboaring-24-1024x463.webp
deleted file mode 100644
index b2d88557..00000000
Binary files a/assets/images/getting-started/onboaring-24-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-25-1024x465.webp b/assets/images/getting-started/onboaring-25-1024x465.webp
deleted file mode 100644
index 0e9337ce..00000000
Binary files a/assets/images/getting-started/onboaring-25-1024x465.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-26-1024x463.webp b/assets/images/getting-started/onboaring-26-1024x463.webp
deleted file mode 100644
index 9a542039..00000000
Binary files a/assets/images/getting-started/onboaring-26-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-27-1024x464.webp b/assets/images/getting-started/onboaring-27-1024x464.webp
deleted file mode 100644
index dab89b53..00000000
Binary files a/assets/images/getting-started/onboaring-27-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-28-1024x464.webp b/assets/images/getting-started/onboaring-28-1024x464.webp
deleted file mode 100644
index 1b32505c..00000000
Binary files a/assets/images/getting-started/onboaring-28-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-29-1024x465.webp b/assets/images/getting-started/onboaring-29-1024x465.webp
deleted file mode 100644
index 0d265441..00000000
Binary files a/assets/images/getting-started/onboaring-29-1024x465.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-3-1024x462.webp b/assets/images/getting-started/onboaring-3-1024x462.webp
deleted file mode 100644
index 4750a902..00000000
Binary files a/assets/images/getting-started/onboaring-3-1024x462.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-30-1024x459.webp b/assets/images/getting-started/onboaring-30-1024x459.webp
deleted file mode 100644
index 9a7cdbb9..00000000
Binary files a/assets/images/getting-started/onboaring-30-1024x459.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-31-1024x463.webp b/assets/images/getting-started/onboaring-31-1024x463.webp
deleted file mode 100644
index b63d47a2..00000000
Binary files a/assets/images/getting-started/onboaring-31-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-32-1024x463.webp b/assets/images/getting-started/onboaring-32-1024x463.webp
deleted file mode 100644
index 2e24269d..00000000
Binary files a/assets/images/getting-started/onboaring-32-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-33-1024x463.webp b/assets/images/getting-started/onboaring-33-1024x463.webp
deleted file mode 100644
index 32dfaf4e..00000000
Binary files a/assets/images/getting-started/onboaring-33-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-34-1024x460.webp b/assets/images/getting-started/onboaring-34-1024x460.webp
deleted file mode 100644
index 2eea42d9..00000000
Binary files a/assets/images/getting-started/onboaring-34-1024x460.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-35-1024x460.webp b/assets/images/getting-started/onboaring-35-1024x460.webp
deleted file mode 100644
index 6479ae4b..00000000
Binary files a/assets/images/getting-started/onboaring-35-1024x460.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-36-1024x460.webp b/assets/images/getting-started/onboaring-36-1024x460.webp
deleted file mode 100644
index 7a9dd47b..00000000
Binary files a/assets/images/getting-started/onboaring-36-1024x460.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-37-1024x460.webp b/assets/images/getting-started/onboaring-37-1024x460.webp
deleted file mode 100644
index b05ef1fa..00000000
Binary files a/assets/images/getting-started/onboaring-37-1024x460.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-38-1024x460.webp b/assets/images/getting-started/onboaring-38-1024x460.webp
deleted file mode 100644
index 58dea44c..00000000
Binary files a/assets/images/getting-started/onboaring-38-1024x460.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-39-1024x460.webp b/assets/images/getting-started/onboaring-39-1024x460.webp
deleted file mode 100644
index 8361782f..00000000
Binary files a/assets/images/getting-started/onboaring-39-1024x460.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-4-1024x464.webp b/assets/images/getting-started/onboaring-4-1024x464.webp
deleted file mode 100644
index 6ca42736..00000000
Binary files a/assets/images/getting-started/onboaring-4-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-40-1024x460.webp b/assets/images/getting-started/onboaring-40-1024x460.webp
deleted file mode 100644
index 12781f01..00000000
Binary files a/assets/images/getting-started/onboaring-40-1024x460.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-41-1024x460.webp b/assets/images/getting-started/onboaring-41-1024x460.webp
deleted file mode 100644
index 611ac0b9..00000000
Binary files a/assets/images/getting-started/onboaring-41-1024x460.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-42-1024x460.webp b/assets/images/getting-started/onboaring-42-1024x460.webp
deleted file mode 100644
index 9096aac8..00000000
Binary files a/assets/images/getting-started/onboaring-42-1024x460.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-43-1024x463.webp b/assets/images/getting-started/onboaring-43-1024x463.webp
deleted file mode 100644
index 607b5893..00000000
Binary files a/assets/images/getting-started/onboaring-43-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-44-1024x464.webp b/assets/images/getting-started/onboaring-44-1024x464.webp
deleted file mode 100644
index 72a47bd4..00000000
Binary files a/assets/images/getting-started/onboaring-44-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-45-1024x463.webp b/assets/images/getting-started/onboaring-45-1024x463.webp
deleted file mode 100644
index 05a39312..00000000
Binary files a/assets/images/getting-started/onboaring-45-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-46-1024x667.webp b/assets/images/getting-started/onboaring-46-1024x667.webp
deleted file mode 100644
index 9bf08612..00000000
Binary files a/assets/images/getting-started/onboaring-46-1024x667.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-47-1024x463.webp b/assets/images/getting-started/onboaring-47-1024x463.webp
deleted file mode 100644
index 5d2150f6..00000000
Binary files a/assets/images/getting-started/onboaring-47-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-48-1024x464.webp b/assets/images/getting-started/onboaring-48-1024x464.webp
deleted file mode 100644
index 5b69598d..00000000
Binary files a/assets/images/getting-started/onboaring-48-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-49-1024x463.webp b/assets/images/getting-started/onboaring-49-1024x463.webp
deleted file mode 100644
index c9f046cb..00000000
Binary files a/assets/images/getting-started/onboaring-49-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-5-1024x464.webp b/assets/images/getting-started/onboaring-5-1024x464.webp
deleted file mode 100644
index 97b1f467..00000000
Binary files a/assets/images/getting-started/onboaring-5-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-50-1024x464.webp b/assets/images/getting-started/onboaring-50-1024x464.webp
deleted file mode 100644
index 3782badb..00000000
Binary files a/assets/images/getting-started/onboaring-50-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-50-768x348.webp b/assets/images/getting-started/onboaring-50-768x348.webp
deleted file mode 100644
index 1d89c115..00000000
Binary files a/assets/images/getting-started/onboaring-50-768x348.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-51-1024x463.webp b/assets/images/getting-started/onboaring-51-1024x463.webp
deleted file mode 100644
index 43fa40e1..00000000
Binary files a/assets/images/getting-started/onboaring-51-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-52-1024x463.webp b/assets/images/getting-started/onboaring-52-1024x463.webp
deleted file mode 100644
index 98ade091..00000000
Binary files a/assets/images/getting-started/onboaring-52-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-53-1024x463.webp b/assets/images/getting-started/onboaring-53-1024x463.webp
deleted file mode 100644
index c16805ef..00000000
Binary files a/assets/images/getting-started/onboaring-53-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-54-1024x464.webp b/assets/images/getting-started/onboaring-54-1024x464.webp
deleted file mode 100644
index d83f11a6..00000000
Binary files a/assets/images/getting-started/onboaring-54-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-55-1024x462.webp b/assets/images/getting-started/onboaring-55-1024x462.webp
deleted file mode 100644
index 2f12d901..00000000
Binary files a/assets/images/getting-started/onboaring-55-1024x462.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-56-1024x461.webp b/assets/images/getting-started/onboaring-56-1024x461.webp
deleted file mode 100644
index 48de8be4..00000000
Binary files a/assets/images/getting-started/onboaring-56-1024x461.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-59-1024x465.webp b/assets/images/getting-started/onboaring-59-1024x465.webp
deleted file mode 100644
index 06657a0f..00000000
Binary files a/assets/images/getting-started/onboaring-59-1024x465.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-6-1024x463.webp b/assets/images/getting-started/onboaring-6-1024x463.webp
deleted file mode 100644
index 8dca111c..00000000
Binary files a/assets/images/getting-started/onboaring-6-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-60-1024x463.webp b/assets/images/getting-started/onboaring-60-1024x463.webp
deleted file mode 100644
index cc1a5942..00000000
Binary files a/assets/images/getting-started/onboaring-60-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-61-1024x463.webp b/assets/images/getting-started/onboaring-61-1024x463.webp
deleted file mode 100644
index 4773ad7b..00000000
Binary files a/assets/images/getting-started/onboaring-61-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-62-1024x462.webp b/assets/images/getting-started/onboaring-62-1024x462.webp
deleted file mode 100644
index b6285004..00000000
Binary files a/assets/images/getting-started/onboaring-62-1024x462.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-64-1024x466.webp b/assets/images/getting-started/onboaring-64-1024x466.webp
deleted file mode 100644
index cf47c1d5..00000000
Binary files a/assets/images/getting-started/onboaring-64-1024x466.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-65-1024x461.webp b/assets/images/getting-started/onboaring-65-1024x461.webp
deleted file mode 100644
index ddf271b1..00000000
Binary files a/assets/images/getting-started/onboaring-65-1024x461.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-66-1024x463.webp b/assets/images/getting-started/onboaring-66-1024x463.webp
deleted file mode 100644
index 5b4190dc..00000000
Binary files a/assets/images/getting-started/onboaring-66-1024x463.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-67-1024x466.webp b/assets/images/getting-started/onboaring-67-1024x466.webp
deleted file mode 100644
index 1f95920f..00000000
Binary files a/assets/images/getting-started/onboaring-67-1024x466.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-7-1024x465.webp b/assets/images/getting-started/onboaring-7-1024x465.webp
deleted file mode 100644
index 44cf135a..00000000
Binary files a/assets/images/getting-started/onboaring-7-1024x465.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-8-1024x465.webp b/assets/images/getting-started/onboaring-8-1024x465.webp
deleted file mode 100644
index 3eea43bd..00000000
Binary files a/assets/images/getting-started/onboaring-8-1024x465.webp and /dev/null differ
diff --git a/assets/images/getting-started/onboaring-9-1024x464.webp b/assets/images/getting-started/onboaring-9-1024x464.webp
deleted file mode 100644
index 8f9ae7b6..00000000
Binary files a/assets/images/getting-started/onboaring-9-1024x464.webp and /dev/null differ
diff --git a/assets/images/getting-started/playwright.png b/assets/images/getting-started/playwright.png
new file mode 100644
index 00000000..8ad05cec
Binary files /dev/null and b/assets/images/getting-started/playwright.png differ
diff --git a/assets/images/getting-started/puppeteer.png b/assets/images/getting-started/puppeteer.png
new file mode 100644
index 00000000..a9b2ddac
Binary files /dev/null and b/assets/images/getting-started/puppeteer.png differ
diff --git a/assets/images/getting-started/runoncloud.webp b/assets/images/getting-started/runoncloud.webp
deleted file mode 100644
index d5a128b3..00000000
Binary files a/assets/images/getting-started/runoncloud.webp and /dev/null differ
diff --git a/assets/images/getting-started/select-config.webp b/assets/images/getting-started/select-config.webp
deleted file mode 100644
index 5273db75..00000000
Binary files a/assets/images/getting-started/select-config.webp and /dev/null differ
diff --git a/assets/images/getting-started/select-java.webp b/assets/images/getting-started/select-java.webp
deleted file mode 100644
index 41ccd9da..00000000
Binary files a/assets/images/getting-started/select-java.webp and /dev/null differ
diff --git a/assets/images/getting-started/select-testng.webp b/assets/images/getting-started/select-testng.webp
deleted file mode 100644
index 7e806c42..00000000
Binary files a/assets/images/getting-started/select-testng.webp and /dev/null differ
diff --git a/assets/images/getting-started/selenium-4.webp b/assets/images/getting-started/selenium-4.webp
deleted file mode 100644
index 59bc5a43..00000000
Binary files a/assets/images/getting-started/selenium-4.webp and /dev/null differ
diff --git a/assets/images/getting-started/selenium.png b/assets/images/getting-started/selenium.png
new file mode 100644
index 00000000..b86c9a9d
Binary files /dev/null and b/assets/images/getting-started/selenium.png differ
diff --git a/assets/images/getting-started/selenium.webp b/assets/images/getting-started/selenium.webp
deleted file mode 100644
index d3b291d7..00000000
Binary files a/assets/images/getting-started/selenium.webp and /dev/null differ
diff --git a/assets/images/getting-started/testcafe.png b/assets/images/getting-started/testcafe.png
new file mode 100644
index 00000000..d8f4dbe7
Binary files /dev/null and b/assets/images/getting-started/testcafe.png differ
diff --git a/assets/images/getting-started/webdriverio.png b/assets/images/getting-started/webdriverio.png
new file mode 100644
index 00000000..5445be8f
Binary files /dev/null and b/assets/images/getting-started/webdriverio.png differ
diff --git a/assets/images/getting-started/xcui.jpeg b/assets/images/getting-started/xcui.jpeg
new file mode 100644
index 00000000..c07217be
Binary files /dev/null and b/assets/images/getting-started/xcui.jpeg differ
diff --git a/assets/images/har_waterfall.png b/assets/images/har_waterfall.png
new file mode 100644
index 00000000..5c7dd72e
Binary files /dev/null and b/assets/images/har_waterfall.png differ
diff --git a/assets/images/hye-icons/aborted.png b/assets/images/hye-icons/aborted.png
deleted file mode 100644
index 4fc84a8d..00000000
Binary files a/assets/images/hye-icons/aborted.png and /dev/null differ
diff --git a/assets/images/hye-icons/blocked.png b/assets/images/hye-icons/blocked.png
deleted file mode 100644
index 613102de..00000000
Binary files a/assets/images/hye-icons/blocked.png and /dev/null differ
diff --git a/assets/images/hye-icons/cancelled.png b/assets/images/hye-icons/cancelled.png
deleted file mode 100644
index f9ad04fb..00000000
Binary files a/assets/images/hye-icons/cancelled.png and /dev/null differ
diff --git a/assets/images/hye-icons/completed.png b/assets/images/hye-icons/completed.png
deleted file mode 100644
index 89712f87..00000000
Binary files a/assets/images/hye-icons/completed.png and /dev/null differ
diff --git a/assets/images/hye-icons/concepts3.png b/assets/images/hye-icons/concepts3.png
deleted file mode 100644
index 86ab5824..00000000
Binary files a/assets/images/hye-icons/concepts3.png and /dev/null differ
diff --git a/assets/images/hye-icons/concepts4.png b/assets/images/hye-icons/concepts4.png
deleted file mode 100644
index 2622f4cd..00000000
Binary files a/assets/images/hye-icons/concepts4.png and /dev/null differ
diff --git a/assets/images/hye-icons/concepts5.png b/assets/images/hye-icons/concepts5.png
deleted file mode 100644
index 9c947b81..00000000
Binary files a/assets/images/hye-icons/concepts5.png and /dev/null differ
diff --git a/assets/images/hye-icons/concepts6.png b/assets/images/hye-icons/concepts6.png
deleted file mode 100644
index fd0e888f..00000000
Binary files a/assets/images/hye-icons/concepts6.png and /dev/null differ
diff --git a/assets/images/hye-icons/concepts7.png b/assets/images/hye-icons/concepts7.png
deleted file mode 100644
index 2bf7d301..00000000
Binary files a/assets/images/hye-icons/concepts7.png and /dev/null differ
diff --git a/assets/images/hye-icons/concepts8.png b/assets/images/hye-icons/concepts8.png
deleted file mode 100644
index fbb0dfd3..00000000
Binary files a/assets/images/hye-icons/concepts8.png and /dev/null differ
diff --git a/assets/images/hye-icons/created.png b/assets/images/hye-icons/created.png
deleted file mode 100644
index b67f1836..00000000
Binary files a/assets/images/hye-icons/created.png and /dev/null differ
diff --git a/assets/images/hye-icons/error.png b/assets/images/hye-icons/error.png
deleted file mode 100644
index 371df72a..00000000
Binary files a/assets/images/hye-icons/error.png and /dev/null differ
diff --git a/assets/images/hye-icons/failed.png b/assets/images/hye-icons/failed.png
deleted file mode 100644
index 6c21c56d..00000000
Binary files a/assets/images/hye-icons/failed.png and /dev/null differ
diff --git a/assets/images/hye-icons/idle-timeout.png b/assets/images/hye-icons/idle-timeout.png
deleted file mode 100644
index 36a8c3ad..00000000
Binary files a/assets/images/hye-icons/idle-timeout.png and /dev/null differ
diff --git a/assets/images/hye-icons/ignored.png b/assets/images/hye-icons/ignored.png
deleted file mode 100644
index d4b263f6..00000000
Binary files a/assets/images/hye-icons/ignored.png and /dev/null differ
diff --git a/assets/images/hye-icons/initiated.png b/assets/images/hye-icons/initiated.png
deleted file mode 100644
index aaafdfe1..00000000
Binary files a/assets/images/hye-icons/initiated.png and /dev/null differ
diff --git a/assets/images/hye-icons/lambda-error.png b/assets/images/hye-icons/lambda-error.png
deleted file mode 100644
index 2a749330..00000000
Binary files a/assets/images/hye-icons/lambda-error.png and /dev/null differ
diff --git a/assets/images/hye-icons/passed.png b/assets/images/hye-icons/passed.png
deleted file mode 100644
index f95acb69..00000000
Binary files a/assets/images/hye-icons/passed.png and /dev/null differ
diff --git a/assets/images/hye-icons/running.png b/assets/images/hye-icons/running.png
deleted file mode 100644
index 58c856be..00000000
Binary files a/assets/images/hye-icons/running.png and /dev/null differ
diff --git a/assets/images/hye-icons/skipped.png b/assets/images/hye-icons/skipped.png
deleted file mode 100644
index c854049b..00000000
Binary files a/assets/images/hye-icons/skipped.png and /dev/null differ
diff --git a/assets/images/hye-icons/tasks.png b/assets/images/hye-icons/tasks.png
deleted file mode 100644
index 9bae2f9d..00000000
Binary files a/assets/images/hye-icons/tasks.png and /dev/null differ
diff --git a/assets/images/hye-icons/time-out.png b/assets/images/hye-icons/time-out.png
deleted file mode 100644
index 27760c00..00000000
Binary files a/assets/images/hye-icons/time-out.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_artefacts_management_1.png b/assets/images/hyperexecute/behave/behave_artefacts_management_1.png
deleted file mode 100644
index eb276545..00000000
Binary files a/assets/images/hyperexecute/behave/behave_artefacts_management_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_artefacts_management_2.png b/assets/images/hyperexecute/behave/behave_artefacts_management_2.png
deleted file mode 100644
index 243e5ba2..00000000
Binary files a/assets/images/hyperexecute/behave/behave_artefacts_management_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_artifacts_1.png b/assets/images/hyperexecute/behave/behave_artifacts_1.png
deleted file mode 100644
index b964da71..00000000
Binary files a/assets/images/hyperexecute/behave/behave_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_artifacts_2.png b/assets/images/hyperexecute/behave/behave_artifacts_2.png
deleted file mode 100644
index cbd3a874..00000000
Binary files a/assets/images/hyperexecute/behave/behave_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_autosplit_1.png b/assets/images/hyperexecute/behave/behave_autosplit_1.png
deleted file mode 100644
index 5479cd0f..00000000
Binary files a/assets/images/hyperexecute/behave/behave_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_autosplit_2.png b/assets/images/hyperexecute/behave/behave_autosplit_2.png
deleted file mode 100644
index 63663578..00000000
Binary files a/assets/images/hyperexecute/behave/behave_autosplit_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_autosplit_cmd_1.png b/assets/images/hyperexecute/behave/behave_autosplit_cmd_1.png
deleted file mode 100644
index 35480401..00000000
Binary files a/assets/images/hyperexecute/behave/behave_autosplit_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_autosplit_cmd_2.png b/assets/images/hyperexecute/behave/behave_autosplit_cmd_2.png
deleted file mode 100644
index 8587325a..00000000
Binary files a/assets/images/hyperexecute/behave/behave_autosplit_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_autosplit_execution_1.png b/assets/images/hyperexecute/behave/behave_autosplit_execution_1.png
deleted file mode 100644
index eb276545..00000000
Binary files a/assets/images/hyperexecute/behave/behave_autosplit_execution_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_autosplit_execution_2.png b/assets/images/hyperexecute/behave/behave_autosplit_execution_2.png
deleted file mode 100644
index 67c56a26..00000000
Binary files a/assets/images/hyperexecute/behave/behave_autosplit_execution_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_autosplit_execution_3.png b/assets/images/hyperexecute/behave/behave_autosplit_execution_3.png
deleted file mode 100644
index 41105eae..00000000
Binary files a/assets/images/hyperexecute/behave/behave_autosplit_execution_3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_matrix_1.png b/assets/images/hyperexecute/behave/behave_matrix_1.png
deleted file mode 100644
index b964da71..00000000
Binary files a/assets/images/hyperexecute/behave/behave_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_matrix_2.png b/assets/images/hyperexecute/behave/behave_matrix_2.png
deleted file mode 100644
index 52ec279a..00000000
Binary files a/assets/images/hyperexecute/behave/behave_matrix_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_matrix_cmd_1.png b/assets/images/hyperexecute/behave/behave_matrix_cmd_1.png
deleted file mode 100644
index b0996fed..00000000
Binary files a/assets/images/hyperexecute/behave/behave_matrix_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_matrix_cmd_2.png b/assets/images/hyperexecute/behave/behave_matrix_cmd_2.png
deleted file mode 100644
index a698260d..00000000
Binary files a/assets/images/hyperexecute/behave/behave_matrix_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_matrix_execution_latest.png b/assets/images/hyperexecute/behave/behave_matrix_execution_latest.png
deleted file mode 100644
index a97d1879..00000000
Binary files a/assets/images/hyperexecute/behave/behave_matrix_execution_latest.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_matrix_terminal_1.png b/assets/images/hyperexecute/behave/behave_matrix_terminal_1.png
deleted file mode 100644
index 42e2e506..00000000
Binary files a/assets/images/hyperexecute/behave/behave_matrix_terminal_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_matrix_terminal_2.png b/assets/images/hyperexecute/behave/behave_matrix_terminal_2.png
deleted file mode 100644
index 399c1afc..00000000
Binary files a/assets/images/hyperexecute/behave/behave_matrix_terminal_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_secret_management_1.png b/assets/images/hyperexecute/behave/behave_secret_management_1.png
deleted file mode 100644
index 9778f266..00000000
Binary files a/assets/images/hyperexecute/behave/behave_secret_management_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_secret_management_2.png b/assets/images/hyperexecute/behave/behave_secret_management_2.png
deleted file mode 100644
index ef8d4b33..00000000
Binary files a/assets/images/hyperexecute/behave/behave_secret_management_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_test_execution_1.png b/assets/images/hyperexecute/behave/behave_test_execution_1.png
deleted file mode 100644
index eb276545..00000000
Binary files a/assets/images/hyperexecute/behave/behave_test_execution_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/behave/behave_test_execution_2.png b/assets/images/hyperexecute/behave/behave_test_execution_2.png
deleted file mode 100644
index 5ff51594..00000000
Binary files a/assets/images/hyperexecute/behave/behave_test_execution_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/capybara/capybara_artifacts_1.png b/assets/images/hyperexecute/capybara/capybara_artifacts_1.png
deleted file mode 100644
index b59e3c9d..00000000
Binary files a/assets/images/hyperexecute/capybara/capybara_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/capybara/capybara_artifacts_2.png b/assets/images/hyperexecute/capybara/capybara_artifacts_2.png
deleted file mode 100644
index 6236f7be..00000000
Binary files a/assets/images/hyperexecute/capybara/capybara_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/capybara/capybara_autosplit_1.png b/assets/images/hyperexecute/capybara/capybara_autosplit_1.png
deleted file mode 100644
index b59e3c9d..00000000
Binary files a/assets/images/hyperexecute/capybara/capybara_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/capybara/capybara_matrix_1.png b/assets/images/hyperexecute/capybara/capybara_matrix_1.png
deleted file mode 100644
index 8b82c0bc..00000000
Binary files a/assets/images/hyperexecute/capybara/capybara_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/cli/cli-execute.png b/assets/images/hyperexecute/cli/cli-execute.png
new file mode 100644
index 00000000..8bf406d5
Binary files /dev/null and b/assets/images/hyperexecute/cli/cli-execute.png differ
diff --git a/assets/images/hyperexecute/cli/cli-help.png b/assets/images/hyperexecute/cli/cli-help.png
index 523bbc87..b7649d9e 100644
Binary files a/assets/images/hyperexecute/cli/cli-help.png and b/assets/images/hyperexecute/cli/cli-help.png differ
diff --git a/assets/images/hyperexecute/cli/scan.png b/assets/images/hyperexecute/cli/scan.png
new file mode 100644
index 00000000..5ff00b29
Binary files /dev/null and b/assets/images/hyperexecute/cli/scan.png differ
diff --git a/assets/images/hyp-aws/Step1.png b/assets/images/hyperexecute/cloud/aws/Step1.png
similarity index 100%
rename from assets/images/hyp-aws/Step1.png
rename to assets/images/hyperexecute/cloud/aws/Step1.png
diff --git a/assets/images/hyp-aws/Step2.png b/assets/images/hyperexecute/cloud/aws/Step2.png
similarity index 100%
rename from assets/images/hyp-aws/Step2.png
rename to assets/images/hyperexecute/cloud/aws/Step2.png
diff --git a/assets/images/hyp-aws/Step3.png b/assets/images/hyperexecute/cloud/aws/Step3.png
similarity index 100%
rename from assets/images/hyp-aws/Step3.png
rename to assets/images/hyperexecute/cloud/aws/Step3.png
diff --git a/assets/images/hyp-aws/list_pods.png b/assets/images/hyperexecute/cloud/aws/list_pods.png
similarity index 100%
rename from assets/images/hyp-aws/list_pods.png
rename to assets/images/hyperexecute/cloud/aws/list_pods.png
diff --git a/assets/images/hyp-aws/namespace_output.png b/assets/images/hyperexecute/cloud/aws/namespace_output.png
similarity index 100%
rename from assets/images/hyp-aws/namespace_output.png
rename to assets/images/hyperexecute/cloud/aws/namespace_output.png
diff --git a/assets/images/hyperexecute-private-cloud-on-jumphost/1.png b/assets/images/hyperexecute/cloud/azure/jumphost/1.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-on-jumphost/1.png
rename to assets/images/hyperexecute/cloud/azure/jumphost/1.png
diff --git a/assets/images/hyperexecute-private-cloud-on-jumphost/2.png b/assets/images/hyperexecute/cloud/azure/jumphost/2.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-on-jumphost/2.png
rename to assets/images/hyperexecute/cloud/azure/jumphost/2.png
diff --git a/assets/images/hyperexecute-private-cloud-on-jumphost/3.png b/assets/images/hyperexecute/cloud/azure/jumphost/3.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-on-jumphost/3.png
rename to assets/images/hyperexecute/cloud/azure/jumphost/3.png
diff --git a/assets/images/hyperexecute-private-cloud-on-jumphost/4.png b/assets/images/hyperexecute/cloud/azure/jumphost/4.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-on-jumphost/4.png
rename to assets/images/hyperexecute/cloud/azure/jumphost/4.png
diff --git a/assets/images/hyperexecute-private-cloud-on-jumphost/5.png b/assets/images/hyperexecute/cloud/azure/jumphost/5.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-on-jumphost/5.png
rename to assets/images/hyperexecute/cloud/azure/jumphost/5.png
diff --git a/assets/images/hyperexecute-private-cloud-setup-with-azure/1.png b/assets/images/hyperexecute/cloud/azure/private-cloud-setup/1.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-setup-with-azure/1.png
rename to assets/images/hyperexecute/cloud/azure/private-cloud-setup/1.png
diff --git a/assets/images/hyperexecute-private-cloud-setup-with-azure/2.png b/assets/images/hyperexecute/cloud/azure/private-cloud-setup/2.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-setup-with-azure/2.png
rename to assets/images/hyperexecute/cloud/azure/private-cloud-setup/2.png
diff --git a/assets/images/hyperexecute-private-cloud-setup-with-azure/3.png b/assets/images/hyperexecute/cloud/azure/private-cloud-setup/3.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-setup-with-azure/3.png
rename to assets/images/hyperexecute/cloud/azure/private-cloud-setup/3.png
diff --git a/assets/images/hyperexecute-private-cloud-setup-with-azure/4.png b/assets/images/hyperexecute/cloud/azure/private-cloud-setup/4.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-setup-with-azure/4.png
rename to assets/images/hyperexecute/cloud/azure/private-cloud-setup/4.png
diff --git a/assets/images/hyperexecute-private-cloud-setup-with-azure/5.png b/assets/images/hyperexecute/cloud/azure/private-cloud-setup/5.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-setup-with-azure/5.png
rename to assets/images/hyperexecute/cloud/azure/private-cloud-setup/5.png
diff --git a/assets/images/hyperexecute-private-cloud-setup-with-azure/6.png b/assets/images/hyperexecute/cloud/azure/private-cloud-setup/6.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-setup-with-azure/6.png
rename to assets/images/hyperexecute/cloud/azure/private-cloud-setup/6.png
diff --git a/assets/images/hyperexecute-private-cloud-setup-with-azure/7.png b/assets/images/hyperexecute/cloud/azure/private-cloud-setup/7.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-setup-with-azure/7.png
rename to assets/images/hyperexecute/cloud/azure/private-cloud-setup/7.png
diff --git a/assets/images/hyperexecute-private-cloud-setup-with-azure/8.png b/assets/images/hyperexecute/cloud/azure/private-cloud-setup/8.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-setup-with-azure/8.png
rename to assets/images/hyperexecute/cloud/azure/private-cloud-setup/8.png
diff --git a/assets/images/hyperexecute-private-cloud-setup-with-azure/9.png b/assets/images/hyperexecute/cloud/azure/private-cloud-setup/9.png
similarity index 100%
rename from assets/images/hyperexecute-private-cloud-setup-with-azure/9.png
rename to assets/images/hyperexecute/cloud/azure/private-cloud-setup/9.png
diff --git a/assets/images/hyperexecute-vnet-peering-for-private-cloud/1.png b/assets/images/hyperexecute/cloud/azure/vnet-peering/1.png
similarity index 100%
rename from assets/images/hyperexecute-vnet-peering-for-private-cloud/1.png
rename to assets/images/hyperexecute/cloud/azure/vnet-peering/1.png
diff --git a/assets/images/hyperexecute-vnet-peering-for-private-cloud/2.png b/assets/images/hyperexecute/cloud/azure/vnet-peering/2.png
similarity index 100%
rename from assets/images/hyperexecute-vnet-peering-for-private-cloud/2.png
rename to assets/images/hyperexecute/cloud/azure/vnet-peering/2.png
diff --git a/assets/images/hyperexecute-vnet-peering-for-private-cloud/3.png b/assets/images/hyperexecute/cloud/azure/vnet-peering/3.png
similarity index 100%
rename from assets/images/hyperexecute-vnet-peering-for-private-cloud/3.png
rename to assets/images/hyperexecute/cloud/azure/vnet-peering/3.png
diff --git a/assets/images/hyperexecute-vnet-peering-for-private-cloud/4.png b/assets/images/hyperexecute/cloud/azure/vnet-peering/4.png
similarity index 100%
rename from assets/images/hyperexecute-vnet-peering-for-private-cloud/4.png
rename to assets/images/hyperexecute/cloud/azure/vnet-peering/4.png
diff --git a/assets/images/hyperexecute-vnet-peering-for-private-cloud/5.png b/assets/images/hyperexecute/cloud/azure/vnet-peering/5.png
similarity index 100%
rename from assets/images/hyperexecute-vnet-peering-for-private-cloud/5.png
rename to assets/images/hyperexecute/cloud/azure/vnet-peering/5.png
diff --git a/assets/images/hyperexecute-vnet-peering-for-private-cloud/6.png b/assets/images/hyperexecute/cloud/azure/vnet-peering/6.png
similarity index 100%
rename from assets/images/hyperexecute-vnet-peering-for-private-cloud/6.png
rename to assets/images/hyperexecute/cloud/azure/vnet-peering/6.png
diff --git a/assets/images/hyperexecute-vnet-peering-for-private-cloud/7.png b/assets/images/hyperexecute/cloud/azure/vnet-peering/7.png
similarity index 100%
rename from assets/images/hyperexecute-vnet-peering-for-private-cloud/7.png
rename to assets/images/hyperexecute/cloud/azure/vnet-peering/7.png
diff --git a/assets/images/hyperexecute-git/1.png b/assets/images/hyperexecute/cloud/git/1.png
similarity index 100%
rename from assets/images/hyperexecute-git/1.png
rename to assets/images/hyperexecute/cloud/git/1.png
diff --git a/assets/images/hyperexecute-git/2.png b/assets/images/hyperexecute/cloud/git/2.png
similarity index 100%
rename from assets/images/hyperexecute-git/2.png
rename to assets/images/hyperexecute/cloud/git/2.png
diff --git a/assets/images/hyperexecute-git/3a.png b/assets/images/hyperexecute/cloud/git/3a.png
similarity index 100%
rename from assets/images/hyperexecute-git/3a.png
rename to assets/images/hyperexecute/cloud/git/3a.png
diff --git a/assets/images/hyperexecute-git/4a.png b/assets/images/hyperexecute/cloud/git/4a.png
similarity index 100%
rename from assets/images/hyperexecute-git/4a.png
rename to assets/images/hyperexecute/cloud/git/4a.png
diff --git a/assets/images/hyperexecute-git/5.png b/assets/images/hyperexecute/cloud/git/5.png
similarity index 100%
rename from assets/images/hyperexecute-git/5.png
rename to assets/images/hyperexecute/cloud/git/5.png
diff --git a/assets/images/hyperexecute/cucumber/cucumber_artifacts_1.png b/assets/images/hyperexecute/cucumber/cucumber_artifacts_1.png
deleted file mode 100644
index c0ae7899..00000000
Binary files a/assets/images/hyperexecute/cucumber/cucumber_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/cucumber/cucumber_artifacts_2.png b/assets/images/hyperexecute/cucumber/cucumber_artifacts_2.png
deleted file mode 100644
index 3962dd58..00000000
Binary files a/assets/images/hyperexecute/cucumber/cucumber_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/cucumber/cucumber_autosplit_1.png b/assets/images/hyperexecute/cucumber/cucumber_autosplit_1.png
deleted file mode 100644
index c0ae7899..00000000
Binary files a/assets/images/hyperexecute/cucumber/cucumber_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/cucumber/cucumber_autosplit_2.png b/assets/images/hyperexecute/cucumber/cucumber_autosplit_2.png
deleted file mode 100644
index f328b4ec..00000000
Binary files a/assets/images/hyperexecute/cucumber/cucumber_autosplit_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/cucumber/cucumber_autosplit_cmd_1.png b/assets/images/hyperexecute/cucumber/cucumber_autosplit_cmd_1.png
deleted file mode 100644
index 3b82e823..00000000
Binary files a/assets/images/hyperexecute/cucumber/cucumber_autosplit_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/cucumber/cucumber_autosplit_cmd_2.png b/assets/images/hyperexecute/cucumber/cucumber_autosplit_cmd_2.png
deleted file mode 100644
index e1afcfbf..00000000
Binary files a/assets/images/hyperexecute/cucumber/cucumber_autosplit_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/cucumber/cucumber_matrix_1.png b/assets/images/hyperexecute/cucumber/cucumber_matrix_1.png
deleted file mode 100644
index a2129c2c..00000000
Binary files a/assets/images/hyperexecute/cucumber/cucumber_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/cucumber/cucumber_matrix_2.png b/assets/images/hyperexecute/cucumber/cucumber_matrix_2.png
deleted file mode 100644
index 6318e5f6..00000000
Binary files a/assets/images/hyperexecute/cucumber/cucumber_matrix_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/cucumber/cucumber_matrix_cmd_1.png b/assets/images/hyperexecute/cucumber/cucumber_matrix_cmd_1.png
deleted file mode 100644
index 6d784736..00000000
Binary files a/assets/images/hyperexecute/cucumber/cucumber_matrix_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/cucumber/cucumber_matrix_cmd_2.png b/assets/images/hyperexecute/cucumber/cucumber_matrix_cmd_2.png
deleted file mode 100644
index 4cb9f6f0..00000000
Binary files a/assets/images/hyperexecute/cucumber/cucumber_matrix_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/artifacts-reports/artifact1.png b/assets/images/hyperexecute/features/artifacts-reports/artifact1.png
deleted file mode 100644
index 43e9a6be..00000000
Binary files a/assets/images/hyperexecute/features/artifacts-reports/artifact1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/artifacts-reports/artifact2.png b/assets/images/hyperexecute/features/artifacts-reports/artifact2.png
deleted file mode 100644
index eca8b107..00000000
Binary files a/assets/images/hyperexecute/features/artifacts-reports/artifact2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/artifacts-reports/artifact3.jpeg b/assets/images/hyperexecute/features/artifacts-reports/artifact3.jpeg
deleted file mode 100644
index 84fe4ed8..00000000
Binary files a/assets/images/hyperexecute/features/artifacts-reports/artifact3.jpeg and /dev/null differ
diff --git a/assets/images/hyperexecute/features/artifacts-reports/artifacts.gif b/assets/images/hyperexecute/features/artifacts-reports/artifacts.gif
new file mode 100644
index 00000000..41e27afe
Binary files /dev/null and b/assets/images/hyperexecute/features/artifacts-reports/artifacts.gif differ
diff --git a/assets/images/hyperexecute/features/artifacts-reports/report1.png b/assets/images/hyperexecute/features/artifacts-reports/report1.png
deleted file mode 100644
index cf139124..00000000
Binary files a/assets/images/hyperexecute/features/artifacts-reports/report1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/artifacts-reports/report2.png b/assets/images/hyperexecute/features/artifacts-reports/report2.png
deleted file mode 100644
index 78f359f1..00000000
Binary files a/assets/images/hyperexecute/features/artifacts-reports/report2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/artifacts-reports/report3.png b/assets/images/hyperexecute/features/artifacts-reports/report3.png
deleted file mode 100644
index 50a4304c..00000000
Binary files a/assets/images/hyperexecute/features/artifacts-reports/report3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/artifacts-reports/reports.gif b/assets/images/hyperexecute/features/artifacts-reports/reports.gif
new file mode 100644
index 00000000..faf7e8bc
Binary files /dev/null and b/assets/images/hyperexecute/features/artifacts-reports/reports.gif differ
diff --git a/assets/images/hyperexecute/features/auto-heal/AHStep3.png b/assets/images/hyperexecute/features/auto-heal/AHStep3.png
deleted file mode 100644
index e63b29ae..00000000
Binary files a/assets/images/hyperexecute/features/auto-heal/AHStep3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/auto-heal/AHStep4.png b/assets/images/hyperexecute/features/auto-heal/AHStep4.png
deleted file mode 100644
index 8b5737e2..00000000
Binary files a/assets/images/hyperexecute/features/auto-heal/AHStep4.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/auto-heal/autoheal.gif b/assets/images/hyperexecute/features/auto-heal/autoheal.gif
new file mode 100644
index 00000000..063a5fc4
Binary files /dev/null and b/assets/images/hyperexecute/features/auto-heal/autoheal.gif differ
diff --git a/assets/images/hyperexecute/features/autosplit/auto-reorder.png b/assets/images/hyperexecute/features/autosplit/auto-reorder.png
new file mode 100644
index 00000000..b7f0f861
Binary files /dev/null and b/assets/images/hyperexecute/features/autosplit/auto-reorder.png differ
diff --git a/assets/images/hyperexecute/features/autosplit/autosplit.png b/assets/images/hyperexecute/features/autosplit/autosplit.png
new file mode 100644
index 00000000..b2afeeca
Binary files /dev/null and b/assets/images/hyperexecute/features/autosplit/autosplit.png differ
diff --git a/assets/images/hyperexecute/features/background-service/Step2.png b/assets/images/hyperexecute/features/background-service/Step2.png
deleted file mode 100644
index e12ebe56..00000000
Binary files a/assets/images/hyperexecute/features/background-service/Step2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/background-service/Step3.png b/assets/images/hyperexecute/features/background-service/Step3.png
deleted file mode 100644
index 59fa8ff8..00000000
Binary files a/assets/images/hyperexecute/features/background-service/Step3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/background-service/background-service.gif b/assets/images/hyperexecute/features/background-service/background-service.gif
new file mode 100644
index 00000000..6a6049f3
Binary files /dev/null and b/assets/images/hyperexecute/features/background-service/background-service.gif differ
diff --git a/assets/images/hyperexecute/features/job-archiving/archive.gif b/assets/images/hyperexecute/features/job-archiving/archive.gif
new file mode 100644
index 00000000..0c375fb9
Binary files /dev/null and b/assets/images/hyperexecute/features/job-archiving/archive.gif differ
diff --git a/assets/images/hyperexecute/features/job-archiving/hyp-archive-job.png b/assets/images/hyperexecute/features/job-archiving/hyp-archive-job.png
deleted file mode 100644
index 250890d6..00000000
Binary files a/assets/images/hyperexecute/features/job-archiving/hyp-archive-job.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/job-archiving/unarchive.gif b/assets/images/hyperexecute/features/job-archiving/unarchive.gif
new file mode 100644
index 00000000..2d372143
Binary files /dev/null and b/assets/images/hyperexecute/features/job-archiving/unarchive.gif differ
diff --git a/assets/images/hyperexecute/features/job-archiving/view-archive.gif b/assets/images/hyperexecute/features/job-archiving/view-archive.gif
new file mode 100644
index 00000000..a7b6e856
Binary files /dev/null and b/assets/images/hyperexecute/features/job-archiving/view-archive.gif differ
diff --git a/assets/images/hyperexecute/features/job-prioritization/job-priority.png b/assets/images/hyperexecute/features/job-prioritization/job-priority.png
deleted file mode 100644
index b133af24..00000000
Binary files a/assets/images/hyperexecute/features/job-prioritization/job-priority.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/projects/create-project.gif b/assets/images/hyperexecute/features/projects/create-project.gif
new file mode 100644
index 00000000..30ac95a3
Binary files /dev/null and b/assets/images/hyperexecute/features/projects/create-project.gif differ
diff --git a/assets/images/hyperexecute/features/projects/hyp-projects-create.png b/assets/images/hyperexecute/features/projects/hyp-projects-create.png
deleted file mode 100644
index eb50685a..00000000
Binary files a/assets/images/hyperexecute/features/projects/hyp-projects-create.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/projects/hyp-projects-run.png b/assets/images/hyperexecute/features/projects/hyp-projects-run.png
deleted file mode 100644
index 6768fec6..00000000
Binary files a/assets/images/hyperexecute/features/projects/hyp-projects-run.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/projects/hyp-projects-setup.png b/assets/images/hyperexecute/features/projects/hyp-projects-setup.png
deleted file mode 100644
index 88a634c9..00000000
Binary files a/assets/images/hyperexecute/features/projects/hyp-projects-setup.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/projects/hyp-projects-suite-view.png b/assets/images/hyperexecute/features/projects/hyp-projects-suite-view.png
deleted file mode 100644
index 096554f7..00000000
Binary files a/assets/images/hyperexecute/features/projects/hyp-projects-suite-view.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/projects/hyp-projects-view.png b/assets/images/hyperexecute/features/projects/hyp-projects-view.png
deleted file mode 100644
index 77ce80db..00000000
Binary files a/assets/images/hyperexecute/features/projects/hyp-projects-view.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/projects/project-detail.gif b/assets/images/hyperexecute/features/projects/project-detail.gif
new file mode 100644
index 00000000..1528cd5d
Binary files /dev/null and b/assets/images/hyperexecute/features/projects/project-detail.gif differ
diff --git a/assets/images/hyperexecute/features/projects/setup-workflow.gif b/assets/images/hyperexecute/features/projects/setup-workflow.gif
new file mode 100644
index 00000000..a2cfad8b
Binary files /dev/null and b/assets/images/hyperexecute/features/projects/setup-workflow.gif differ
diff --git a/assets/images/hyperexecute/features/projects/workflow-config.gif b/assets/images/hyperexecute/features/projects/workflow-config.gif
new file mode 100644
index 00000000..b713a6d7
Binary files /dev/null and b/assets/images/hyperexecute/features/projects/workflow-config.gif differ
diff --git a/assets/images/hyperexecute/features/rca/rca.gif b/assets/images/hyperexecute/features/rca/rca.gif
new file mode 100644
index 00000000..0e44d722
Binary files /dev/null and b/assets/images/hyperexecute/features/rca/rca.gif differ
diff --git a/assets/images/hyperexecute/features/rca/rca.png b/assets/images/hyperexecute/features/rca/rca.png
deleted file mode 100644
index 8903146a..00000000
Binary files a/assets/images/hyperexecute/features/rca/rca.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/rca/rca_2.png b/assets/images/hyperexecute/features/rca/rca_2.png
deleted file mode 100644
index 08e0550b..00000000
Binary files a/assets/images/hyperexecute/features/rca/rca_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/rca/rca_image.png b/assets/images/hyperexecute/features/rca/rca_image.png
index 20b698bf..78acb210 100644
Binary files a/assets/images/hyperexecute/features/rca/rca_image.png and b/assets/images/hyperexecute/features/rca/rca_image.png differ
diff --git a/assets/images/hyperexecute/features/smart-workflow/hyp-workflow-add.png b/assets/images/hyperexecute/features/smart-workflow/hyp-workflow-add.png
deleted file mode 100644
index f46bcd82..00000000
Binary files a/assets/images/hyperexecute/features/smart-workflow/hyp-workflow-add.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/smart-workflow/hyp-workflow-added.png b/assets/images/hyperexecute/features/smart-workflow/hyp-workflow-added.png
deleted file mode 100644
index ecb06566..00000000
Binary files a/assets/images/hyperexecute/features/smart-workflow/hyp-workflow-added.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/smart-workflow/hyp-workflow-start.png b/assets/images/hyperexecute/features/smart-workflow/hyp-workflow-start.png
deleted file mode 100644
index ff57f3d6..00000000
Binary files a/assets/images/hyperexecute/features/smart-workflow/hyp-workflow-start.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/smart-workflow/hyp-workflow-time.png b/assets/images/hyperexecute/features/smart-workflow/hyp-workflow-time.png
deleted file mode 100644
index 2f93ce96..00000000
Binary files a/assets/images/hyperexecute/features/smart-workflow/hyp-workflow-time.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/test-muting/1.png b/assets/images/hyperexecute/features/test-muting/1.png
deleted file mode 100644
index 231903c4..00000000
Binary files a/assets/images/hyperexecute/features/test-muting/1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/test-muting/2.png b/assets/images/hyperexecute/features/test-muting/2.png
deleted file mode 100644
index c95ba800..00000000
Binary files a/assets/images/hyperexecute/features/test-muting/2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/test-muting/3.png b/assets/images/hyperexecute/features/test-muting/3.png
deleted file mode 100644
index 2abc1d64..00000000
Binary files a/assets/images/hyperexecute/features/test-muting/3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/features/test-muting/manual-mute.gif b/assets/images/hyperexecute/features/test-muting/manual-mute.gif
new file mode 100644
index 00000000..768d8035
Binary files /dev/null and b/assets/images/hyperexecute/features/test-muting/manual-mute.gif differ
diff --git a/assets/images/hyperexecute/features/test-muting/test-mute.gif b/assets/images/hyperexecute/features/test-muting/test-mute.gif
new file mode 100644
index 00000000..59d41450
Binary files /dev/null and b/assets/images/hyperexecute/features/test-muting/test-mute.gif differ
diff --git a/assets/images/hyperexecute/features/test-muting/unmute.gif b/assets/images/hyperexecute/features/test-muting/unmute.gif
new file mode 100644
index 00000000..0de36b62
Binary files /dev/null and b/assets/images/hyperexecute/features/test-muting/unmute.gif differ
diff --git a/assets/images/hyperexecute/frameworks/appium/capability-generator.png b/assets/images/hyperexecute/frameworks/appium/capability-generator.png
new file mode 100644
index 00000000..a71f633c
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/appium/capability-generator.png differ
diff --git a/assets/images/hyperexecute/frameworks/gitpod_config.png b/assets/images/hyperexecute/frameworks/gitpod_config.png
new file mode 100644
index 00000000..2513116f
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/gitpod_config.png differ
diff --git a/assets/images/hyperexecute/frameworks/gitpod_popup.png b/assets/images/hyperexecute/frameworks/gitpod_popup.png
index d957fc84..d2455f1c 100644
Binary files a/assets/images/hyperexecute/frameworks/gitpod_popup.png and b/assets/images/hyperexecute/frameworks/gitpod_popup.png differ
diff --git a/assets/images/hyperexecute/frameworks/k6/output.png b/assets/images/hyperexecute/frameworks/k6/output.png
new file mode 100644
index 00000000..43cfc74c
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/k6/output.png differ
diff --git a/assets/images/hyperexecute/frameworks/maestro/1.png b/assets/images/hyperexecute/frameworks/maestro/1.png
new file mode 100644
index 00000000..fec42b2a
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/maestro/1.png differ
diff --git a/assets/images/hyperexecute/frameworks/maestro/2.png b/assets/images/hyperexecute/frameworks/maestro/2.png
new file mode 100644
index 00000000..8b9ee5ce
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/maestro/2.png differ
diff --git a/assets/images/hyperexecute/frameworks/performance_testing/error-reports.png b/assets/images/hyperexecute/frameworks/performance_testing/error-reports.png
new file mode 100644
index 00000000..621f2a4f
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/performance_testing/error-reports.png differ
diff --git a/assets/images/hyperexecute/frameworks/performance_testing/execute.mp4 b/assets/images/hyperexecute/frameworks/performance_testing/execute.mp4
new file mode 100644
index 00000000..122140b6
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/performance_testing/execute.mp4 differ
diff --git a/assets/images/hyperexecute/frameworks/performance_testing/logs.png b/assets/images/hyperexecute/frameworks/performance_testing/logs.png
new file mode 100644
index 00000000..82b6a581
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/performance_testing/logs.png differ
diff --git a/assets/images/hyperexecute/frameworks/performance_testing/request-stats.png b/assets/images/hyperexecute/frameworks/performance_testing/request-stats.png
new file mode 100644
index 00000000..1004455d
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/performance_testing/request-stats.png differ
diff --git a/assets/images/hyperexecute/frameworks/performance_testing/setup.mp4 b/assets/images/hyperexecute/frameworks/performance_testing/setup.mp4
new file mode 100644
index 00000000..2c5b109d
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/performance_testing/setup.mp4 differ
diff --git a/assets/images/hyperexecute/frameworks/performance_testing/summary-report.png b/assets/images/hyperexecute/frameworks/performance_testing/summary-report.png
new file mode 100644
index 00000000..2494a0e1
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/performance_testing/summary-report.png differ
diff --git a/assets/images/hyperexecute/frameworks/performance_testing/timeline-report.png b/assets/images/hyperexecute/frameworks/performance_testing/timeline-report.png
new file mode 100644
index 00000000..edbc9ff1
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/performance_testing/timeline-report.png differ
diff --git a/assets/images/hyperexecute/frameworks/playwright/real-device/1.png b/assets/images/hyperexecute/frameworks/playwright/real-device/1.png
new file mode 100644
index 00000000..c7b5b464
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/playwright/real-device/1.png differ
diff --git a/assets/images/hyperexecute/frameworks/playwright/real-device/2.png b/assets/images/hyperexecute/frameworks/playwright/real-device/2.png
new file mode 100644
index 00000000..04524f78
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/playwright/real-device/2.png differ
diff --git a/assets/images/hyperexecute/frameworks/playwright/real-device/3.png b/assets/images/hyperexecute/frameworks/playwright/real-device/3.png
new file mode 100644
index 00000000..0f6b18fd
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/playwright/real-device/3.png differ
diff --git a/assets/images/hyperexecute/frameworks/playwright/real-device/4.png b/assets/images/hyperexecute/frameworks/playwright/real-device/4.png
new file mode 100644
index 00000000..284564a8
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/playwright/real-device/4.png differ
diff --git a/assets/images/hyperexecute/frameworks/selenium/junit/artefact_report.png b/assets/images/hyperexecute/frameworks/selenium/junit/artefact_report.png
new file mode 100644
index 00000000..b9007c50
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/selenium/junit/artefact_report.png differ
diff --git a/assets/images/hyperexecute/frameworks/selenium/junit/automation.png b/assets/images/hyperexecute/frameworks/selenium/junit/automation.png
new file mode 100644
index 00000000..69bb3677
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/selenium/junit/automation.png differ
diff --git a/assets/images/hyperexecute/frameworks/selenium/junit/dashboard1.png b/assets/images/hyperexecute/frameworks/selenium/junit/dashboard1.png
new file mode 100644
index 00000000..6335e14e
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/selenium/junit/dashboard1.png differ
diff --git a/assets/images/hyperexecute/frameworks/selenium/junit/dashboard2.png b/assets/images/hyperexecute/frameworks/selenium/junit/dashboard2.png
new file mode 100644
index 00000000..5b56538b
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/selenium/junit/dashboard2.png differ
diff --git a/assets/images/hyperexecute/frameworks/selenium/junit/junit_cmd1.png b/assets/images/hyperexecute/frameworks/selenium/junit/junit_cmd1.png
new file mode 100644
index 00000000..cc64a172
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/selenium/junit/junit_cmd1.png differ
diff --git a/assets/images/hyperexecute/frameworks/selenium/junit/junit_cmd2.png b/assets/images/hyperexecute/frameworks/selenium/junit/junit_cmd2.png
new file mode 100644
index 00000000..8a306559
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/selenium/junit/junit_cmd2.png differ
diff --git a/assets/images/hyperexecute/frameworks/selenium/testng/cmd_1.png b/assets/images/hyperexecute/frameworks/selenium/testng/cmd_1.png
new file mode 100644
index 00000000..6d1000e2
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/selenium/testng/cmd_1.png differ
diff --git a/assets/images/hyperexecute/frameworks/selenium/testng/cmd_2.png b/assets/images/hyperexecute/frameworks/selenium/testng/cmd_2.png
new file mode 100644
index 00000000..79efc60a
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/selenium/testng/cmd_2.png differ
diff --git a/assets/images/hyperexecute/frameworks/selenium/testng/dashboard2.png b/assets/images/hyperexecute/frameworks/selenium/testng/dashboard2.png
new file mode 100644
index 00000000..de315ef4
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/selenium/testng/dashboard2.png differ
diff --git a/assets/images/hyperexecute/frameworks/selenium/testng/testng_artifacts_2.png b/assets/images/hyperexecute/frameworks/selenium/testng/testng_artifacts_2.png
new file mode 100644
index 00000000..5d6aa167
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/selenium/testng/testng_artifacts_2.png differ
diff --git a/assets/images/hyperexecute/frameworks/selenium/testng/testng_autosplit_1.png b/assets/images/hyperexecute/frameworks/selenium/testng/testng_autosplit_1.png
new file mode 100644
index 00000000..5a591b0a
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/selenium/testng/testng_autosplit_1.png differ
diff --git a/assets/images/hyperexecute/frameworks/selenium/testng/testng_autosplit_2.png b/assets/images/hyperexecute/frameworks/selenium/testng/testng_autosplit_2.png
new file mode 100644
index 00000000..4aadfed6
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/selenium/testng/testng_autosplit_2.png differ
diff --git a/assets/images/hyperexecute/frameworks/xcui/1.png b/assets/images/hyperexecute/frameworks/xcui/1.png
new file mode 100644
index 00000000..4439c67e
Binary files /dev/null and b/assets/images/hyperexecute/frameworks/xcui/1.png differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/1.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/1.png
index 1e2691df..c0a3736c 100644
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/1.png and b/assets/images/hyperexecute/getting_started/guided-walkthrough/1.png differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/10.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/10.png
deleted file mode 100644
index b8a018db..00000000
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/10.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/11.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/11.png
deleted file mode 100644
index 60602d55..00000000
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/11.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/12.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/12.png
deleted file mode 100644
index 721b6800..00000000
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/12.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/13.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/13.png
deleted file mode 100644
index 8307dd44..00000000
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/13.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/14.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/14.png
deleted file mode 100644
index 0d3d0b3e..00000000
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/14.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/15.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/15.png
deleted file mode 100644
index 87f0da65..00000000
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/15.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/16.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/16.png
new file mode 100644
index 00000000..ae24a5c3
Binary files /dev/null and b/assets/images/hyperexecute/getting_started/guided-walkthrough/16.png differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/17.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/17.png
new file mode 100644
index 00000000..8584315e
Binary files /dev/null and b/assets/images/hyperexecute/getting_started/guided-walkthrough/17.png differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/2.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/2.png
deleted file mode 100644
index ae49c890..00000000
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/3.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/3.png
index cd55ff4f..28ad2552 100644
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/3.png and b/assets/images/hyperexecute/getting_started/guided-walkthrough/3.png differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/5.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/5.png
index c4996100..54117068 100644
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/5.png and b/assets/images/hyperexecute/getting_started/guided-walkthrough/5.png differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/6.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/6.png
index 2e02b1f4..98fa0912 100644
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/6.png and b/assets/images/hyperexecute/getting_started/guided-walkthrough/6.png differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/7.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/7.png
deleted file mode 100644
index bc96bc55..00000000
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/7.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/8.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/8.png
deleted file mode 100644
index 376ef5ec..00000000
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/8.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/guided-walkthrough/9.png b/assets/images/hyperexecute/getting_started/guided-walkthrough/9.png
deleted file mode 100644
index fcf5e6c9..00000000
Binary files a/assets/images/hyperexecute/getting_started/guided-walkthrough/9.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/quiet-mode.webp b/assets/images/hyperexecute/getting_started/quiet-mode.webp
deleted file mode 100644
index 48b66227..00000000
Binary files a/assets/images/hyperexecute/getting_started/quiet-mode.webp and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/run-first-job/1.png b/assets/images/hyperexecute/getting_started/run-first-job/1.png
deleted file mode 100644
index 2a73ed76..00000000
Binary files a/assets/images/hyperexecute/getting_started/run-first-job/1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/run-first-job/11.png b/assets/images/hyperexecute/getting_started/run-first-job/11.png
index 5218455e..0088db68 100644
Binary files a/assets/images/hyperexecute/getting_started/run-first-job/11.png and b/assets/images/hyperexecute/getting_started/run-first-job/11.png differ
diff --git a/assets/images/hyperexecute/getting_started/run-first-job/2.png b/assets/images/hyperexecute/getting_started/run-first-job/2.png
deleted file mode 100644
index 45737d07..00000000
Binary files a/assets/images/hyperexecute/getting_started/run-first-job/2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/run-first-job/3.png b/assets/images/hyperexecute/getting_started/run-first-job/3.png
deleted file mode 100644
index f1dc7d42..00000000
Binary files a/assets/images/hyperexecute/getting_started/run-first-job/3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/run-first-job/4.png b/assets/images/hyperexecute/getting_started/run-first-job/4.png
index 303b4435..ac2ddd76 100644
Binary files a/assets/images/hyperexecute/getting_started/run-first-job/4.png and b/assets/images/hyperexecute/getting_started/run-first-job/4.png differ
diff --git a/assets/images/hyperexecute/getting_started/run-first-job/5.png b/assets/images/hyperexecute/getting_started/run-first-job/5.png
deleted file mode 100644
index 04f5b66b..00000000
Binary files a/assets/images/hyperexecute/getting_started/run-first-job/5.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/run-first-job/6.png b/assets/images/hyperexecute/getting_started/run-first-job/6.png
deleted file mode 100644
index 4da9591a..00000000
Binary files a/assets/images/hyperexecute/getting_started/run-first-job/6.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/run-first-job/7.png b/assets/images/hyperexecute/getting_started/run-first-job/7.png
deleted file mode 100644
index f524b7d5..00000000
Binary files a/assets/images/hyperexecute/getting_started/run-first-job/7.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/run-first-job/8.png b/assets/images/hyperexecute/getting_started/run-first-job/8.png
deleted file mode 100644
index 01a173b3..00000000
Binary files a/assets/images/hyperexecute/getting_started/run-first-job/8.png and /dev/null differ
diff --git a/assets/images/hyperexecute/getting_started/run-first-job/9.png b/assets/images/hyperexecute/getting_started/run-first-job/9.png
deleted file mode 100644
index 8dfe6c54..00000000
Binary files a/assets/images/hyperexecute/getting_started/run-first-job/9.png and /dev/null differ
diff --git a/assets/images/hyperexecute-getting-started/onboarding.png b/assets/images/hyperexecute/getting_started/run-first-job/onboarding.png
similarity index 100%
rename from assets/images/hyperexecute-getting-started/onboarding.png
rename to assets/images/hyperexecute/getting_started/run-first-job/onboarding.png
diff --git a/assets/images/hyperexecute/html-report.webp b/assets/images/hyperexecute/html-report.webp
deleted file mode 100644
index 74e2b7c8..00000000
Binary files a/assets/images/hyperexecute/html-report.webp and /dev/null differ
diff --git a/assets/images/hyperexecute/icons/aborted.png b/assets/images/hyperexecute/icons/aborted.png
new file mode 100644
index 00000000..94e448eb
Binary files /dev/null and b/assets/images/hyperexecute/icons/aborted.png differ
diff --git a/assets/images/hyperexecute/icons/blocked.png b/assets/images/hyperexecute/icons/blocked.png
new file mode 100644
index 00000000..8efb55a5
Binary files /dev/null and b/assets/images/hyperexecute/icons/blocked.png differ
diff --git a/assets/images/hyperexecute/icons/cancelled.png b/assets/images/hyperexecute/icons/cancelled.png
new file mode 100644
index 00000000..c961e8ec
Binary files /dev/null and b/assets/images/hyperexecute/icons/cancelled.png differ
diff --git a/assets/images/hyperexecute/icons/changes-found.png b/assets/images/hyperexecute/icons/changes-found.png
new file mode 100644
index 00000000..2c78a344
Binary files /dev/null and b/assets/images/hyperexecute/icons/changes-found.png differ
diff --git a/assets/images/hyperexecute/icons/completed.png b/assets/images/hyperexecute/icons/completed.png
new file mode 100644
index 00000000..3e19bdd2
Binary files /dev/null and b/assets/images/hyperexecute/icons/completed.png differ
diff --git a/assets/images/hyperexecute/icons/created.png b/assets/images/hyperexecute/icons/created.png
new file mode 100644
index 00000000..ba18aeaa
Binary files /dev/null and b/assets/images/hyperexecute/icons/created.png differ
diff --git a/assets/images/hyperexecute/icons/deleted.png b/assets/images/hyperexecute/icons/deleted.png
new file mode 100644
index 00000000..2518c690
Binary files /dev/null and b/assets/images/hyperexecute/icons/deleted.png differ
diff --git a/assets/images/hyperexecute/icons/error.png b/assets/images/hyperexecute/icons/error.png
new file mode 100644
index 00000000..b260a9e2
Binary files /dev/null and b/assets/images/hyperexecute/icons/error.png differ
diff --git a/assets/images/hyperexecute/icons/failed.png b/assets/images/hyperexecute/icons/failed.png
new file mode 100644
index 00000000..0b5c6b26
Binary files /dev/null and b/assets/images/hyperexecute/icons/failed.png differ
diff --git a/assets/images/hyperexecute/icons/idle-timeout.png b/assets/images/hyperexecute/icons/idle-timeout.png
new file mode 100644
index 00000000..ddc862d9
Binary files /dev/null and b/assets/images/hyperexecute/icons/idle-timeout.png differ
diff --git a/assets/images/hyperexecute/icons/ignored.png b/assets/images/hyperexecute/icons/ignored.png
new file mode 100644
index 00000000..43dc45fb
Binary files /dev/null and b/assets/images/hyperexecute/icons/ignored.png differ
diff --git a/assets/images/hyperexecute/icons/initiated.png b/assets/images/hyperexecute/icons/initiated.png
new file mode 100644
index 00000000..c15f0b4b
Binary files /dev/null and b/assets/images/hyperexecute/icons/initiated.png differ
diff --git a/assets/images/hyperexecute/icons/lambda-error.png b/assets/images/hyperexecute/icons/lambda-error.png
new file mode 100644
index 00000000..8b4581fe
Binary files /dev/null and b/assets/images/hyperexecute/icons/lambda-error.png differ
diff --git a/assets/images/hyperexecute/icons/muted.png b/assets/images/hyperexecute/icons/muted.png
new file mode 100644
index 00000000..b22dc847
Binary files /dev/null and b/assets/images/hyperexecute/icons/muted.png differ
diff --git a/assets/images/hyperexecute/icons/partially-completed.png b/assets/images/hyperexecute/icons/partially-completed.png
new file mode 100644
index 00000000..dfb61ee7
Binary files /dev/null and b/assets/images/hyperexecute/icons/partially-completed.png differ
diff --git a/assets/images/hyperexecute/icons/passed.png b/assets/images/hyperexecute/icons/passed.png
new file mode 100644
index 00000000..6ea7d095
Binary files /dev/null and b/assets/images/hyperexecute/icons/passed.png differ
diff --git a/assets/images/hyperexecute/icons/queue-timeout.png b/assets/images/hyperexecute/icons/queue-timeout.png
new file mode 100644
index 00000000..13b4ae0e
Binary files /dev/null and b/assets/images/hyperexecute/icons/queue-timeout.png differ
diff --git a/assets/images/hyperexecute/icons/queued.png b/assets/images/hyperexecute/icons/queued.png
new file mode 100644
index 00000000..c977ffa9
Binary files /dev/null and b/assets/images/hyperexecute/icons/queued.png differ
diff --git a/assets/images/hyperexecute/icons/running.png b/assets/images/hyperexecute/icons/running.png
new file mode 100644
index 00000000..d96644df
Binary files /dev/null and b/assets/images/hyperexecute/icons/running.png differ
diff --git a/assets/images/hyperexecute/icons/skipped.png b/assets/images/hyperexecute/icons/skipped.png
new file mode 100644
index 00000000..41356444
Binary files /dev/null and b/assets/images/hyperexecute/icons/skipped.png differ
diff --git a/assets/images/hyperexecute/icons/stopped.png b/assets/images/hyperexecute/icons/stopped.png
new file mode 100644
index 00000000..d2abb9ca
Binary files /dev/null and b/assets/images/hyperexecute/icons/stopped.png differ
diff --git a/assets/images/hyperexecute/icons/under-screening.png b/assets/images/hyperexecute/icons/under-screening.png
new file mode 100644
index 00000000..06d39938
Binary files /dev/null and b/assets/images/hyperexecute/icons/under-screening.png differ
diff --git a/assets/images/hyperexecute/icons/unknown.png b/assets/images/hyperexecute/icons/unknown.png
new file mode 100644
index 00000000..0ef8acab
Binary files /dev/null and b/assets/images/hyperexecute/icons/unknown.png differ
diff --git a/assets/images/hyperexecute/icons/warning.png b/assets/images/hyperexecute/icons/warning.png
new file mode 100644
index 00000000..ea506af5
Binary files /dev/null and b/assets/images/hyperexecute/icons/warning.png differ
diff --git a/assets/images/hyperexecute/integration/ci-cd/ci-cd.png b/assets/images/hyperexecute/integration/ci-cd/ci-cd.png
new file mode 100644
index 00000000..3bf05ed0
Binary files /dev/null and b/assets/images/hyperexecute/integration/ci-cd/ci-cd.png differ
diff --git a/assets/images/hyperexecute/integration/ci-cd/github/github-actions.png b/assets/images/hyperexecute/integration/ci-cd/github/github-actions.png
new file mode 100644
index 00000000..e449491d
Binary files /dev/null and b/assets/images/hyperexecute/integration/ci-cd/github/github-actions.png differ
diff --git a/assets/images/hyperexecute/integration/ci-cd/github/github_action_yaml.png b/assets/images/hyperexecute/integration/ci-cd/github/github_action_yaml.png
deleted file mode 100644
index b95d71a8..00000000
Binary files a/assets/images/hyperexecute/integration/ci-cd/github/github_action_yaml.png and /dev/null differ
diff --git a/assets/images/hyperexecute/integration/ci-cd/github/github_new_workflow.png b/assets/images/hyperexecute/integration/ci-cd/github/github_new_workflow.png
deleted file mode 100644
index 5e1443a3..00000000
Binary files a/assets/images/hyperexecute/integration/ci-cd/github/github_new_workflow.png and /dev/null differ
diff --git a/assets/images/hyperexecute/integration/ci-cd/github/githubactions_example.png b/assets/images/hyperexecute/integration/ci-cd/github/githubactions_example.png
deleted file mode 100644
index 8e1afa3f..00000000
Binary files a/assets/images/hyperexecute/integration/ci-cd/github/githubactions_example.png and /dev/null differ
diff --git a/assets/images/hyperexecute/integration/ci-cd/github/githubactions_execution.png b/assets/images/hyperexecute/integration/ci-cd/github/githubactions_execution.png
deleted file mode 100644
index d239a57d..00000000
Binary files a/assets/images/hyperexecute/integration/ci-cd/github/githubactions_execution.png and /dev/null differ
diff --git a/assets/images/hyperexecute/integration/ci-cd/github/run_workflow.png b/assets/images/hyperexecute/integration/ci-cd/github/run_workflow.png
deleted file mode 100644
index 95fb8aab..00000000
Binary files a/assets/images/hyperexecute/integration/ci-cd/github/run_workflow.png and /dev/null differ
diff --git a/assets/images/hyperexecute/integration/lt-products/hyp-lt-products.png b/assets/images/hyperexecute/integration/lt-products/hyp-lt-products.png
new file mode 100644
index 00000000..7922b30a
Binary files /dev/null and b/assets/images/hyperexecute/integration/lt-products/hyp-lt-products.png differ
diff --git a/assets/images/hyperexecute/integration/lt-products/smart-ui-sdk/cypress.png b/assets/images/hyperexecute/integration/lt-products/smart-ui-sdk/cypress.png
new file mode 100644
index 00000000..444664f7
Binary files /dev/null and b/assets/images/hyperexecute/integration/lt-products/smart-ui-sdk/cypress.png differ
diff --git a/assets/images/hyperexecute/integration/lt-products/smart-ui-sdk/playwright.png b/assets/images/hyperexecute/integration/lt-products/smart-ui-sdk/playwright.png
new file mode 100644
index 00000000..6ec09791
Binary files /dev/null and b/assets/images/hyperexecute/integration/lt-products/smart-ui-sdk/playwright.png differ
diff --git a/assets/images/hyperexecute/integration/lt-products/smart-ui-sdk/puppeteer.png b/assets/images/hyperexecute/integration/lt-products/smart-ui-sdk/puppeteer.png
new file mode 100644
index 00000000..28de5727
Binary files /dev/null and b/assets/images/hyperexecute/integration/lt-products/smart-ui-sdk/puppeteer.png differ
diff --git a/assets/images/hyperexecute/integration/lt-products/smart-ui-sdk/selenium-js.png b/assets/images/hyperexecute/integration/lt-products/smart-ui-sdk/selenium-js.png
new file mode 100644
index 00000000..1c17e753
Binary files /dev/null and b/assets/images/hyperexecute/integration/lt-products/smart-ui-sdk/selenium-js.png differ
diff --git a/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/1.png b/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/1.png
new file mode 100644
index 00000000..e435469f
Binary files /dev/null and b/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/1.png differ
diff --git a/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/2.png b/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/2.png
new file mode 100644
index 00000000..f605ace4
Binary files /dev/null and b/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/2.png differ
diff --git a/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/3.png b/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/3.png
new file mode 100644
index 00000000..c16c2975
Binary files /dev/null and b/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/3.png differ
diff --git a/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/4.png b/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/4.png
new file mode 100644
index 00000000..06504740
Binary files /dev/null and b/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/4.png differ
diff --git a/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/5.png b/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/5.png
new file mode 100644
index 00000000..3eaf97e3
Binary files /dev/null and b/assets/images/hyperexecute/integration/lt-products/smart-ui/playwright/5.png differ
diff --git a/assets/images/hyperexecute/integration/products/algoqa/1.png b/assets/images/hyperexecute/integration/products/algoqa/1.png
new file mode 100644
index 00000000..2225650a
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/algoqa/1.png differ
diff --git a/assets/images/hyperexecute/integration/products/api/1.png b/assets/images/hyperexecute/integration/products/api/1.png
new file mode 100644
index 00000000..8f512edd
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/api/1.png differ
diff --git a/assets/images/hyperexecute/integration/products/api/2.png b/assets/images/hyperexecute/integration/products/api/2.png
new file mode 100644
index 00000000..eb9431f1
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/api/2.png differ
diff --git a/assets/images/hyperexecute/integration/products/api/3.png b/assets/images/hyperexecute/integration/products/api/3.png
new file mode 100644
index 00000000..22d331ee
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/api/3.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step1.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step1.png
new file mode 100644
index 00000000..429d8e7f
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step1.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step2.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step2.png
new file mode 100644
index 00000000..da895570
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step2.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step3.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step3.png
new file mode 100644
index 00000000..b610fadd
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step3.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step4.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step4.png
new file mode 100644
index 00000000..972ea1c9
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step4.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step5.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step5.png
new file mode 100644
index 00000000..96cb93cc
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step5.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step6.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step6.png
new file mode 100644
index 00000000..3fd402d0
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step6.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step7.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step7.png
new file mode 100644
index 00000000..d5011873
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step7.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step8.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step8.png
new file mode 100644
index 00000000..64f0334a
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step8.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step9.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step9.png
new file mode 100644
index 00000000..381cfa17
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step1/step9.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step1.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step1.png
new file mode 100644
index 00000000..f005f966
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step1.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step2.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step2.png
new file mode 100644
index 00000000..a4d2c5b7
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step2.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step3.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step3.png
new file mode 100644
index 00000000..697d9a96
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step3.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step4.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step4.png
new file mode 100644
index 00000000..5a8d896a
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step4.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step5.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step5.png
new file mode 100644
index 00000000..48435755
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step5.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step6.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step6.png
new file mode 100644
index 00000000..a4605f4c
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step6.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step7.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step7.png
new file mode 100644
index 00000000..647221d8
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step7.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step8.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step8.png
new file mode 100644
index 00000000..53e525a5
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step8.png differ
diff --git a/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step9.png b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step9.png
new file mode 100644
index 00000000..562c9d86
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/azure-test-plan/step2/step9.png differ
diff --git a/assets/images/hyperexecute/integration/products/hyp-products.png b/assets/images/hyperexecute/integration/products/hyp-products.png
new file mode 100644
index 00000000..1b69f165
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/hyp-products.png differ
diff --git a/assets/images/hyperexecute/integration/products/provar/1.png b/assets/images/hyperexecute/integration/products/provar/1.png
new file mode 100644
index 00000000..eaa11a9d
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/provar/1.png differ
diff --git a/assets/images/hyperexecute/integration/products/provar/2.png b/assets/images/hyperexecute/integration/products/provar/2.png
new file mode 100644
index 00000000..2b184ed4
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/provar/2.png differ
diff --git a/assets/images/hyperexecute/integration/products/provar/3.png b/assets/images/hyperexecute/integration/products/provar/3.png
new file mode 100644
index 00000000..7153ecfb
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/provar/3.png differ
diff --git a/assets/images/hyperexecute/integration/products/provar/4.png b/assets/images/hyperexecute/integration/products/provar/4.png
new file mode 100644
index 00000000..70f57540
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/provar/4.png differ
diff --git a/assets/images/hyperexecute/integration/products/qtest/1.png b/assets/images/hyperexecute/integration/products/qtest/1.png
new file mode 100644
index 00000000..cbb21d2f
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/qtest/1.png differ
diff --git a/assets/images/hyperexecute/integration/products/qtest/2.png b/assets/images/hyperexecute/integration/products/qtest/2.png
new file mode 100644
index 00000000..71594181
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/qtest/2.png differ
diff --git a/assets/images/hyperexecute/integration/products/qtest/3.png b/assets/images/hyperexecute/integration/products/qtest/3.png
new file mode 100644
index 00000000..c04125d2
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/qtest/3.png differ
diff --git a/assets/images/hyperexecute/integration/products/qtest/4.png b/assets/images/hyperexecute/integration/products/qtest/4.png
new file mode 100644
index 00000000..821ddcec
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/qtest/4.png differ
diff --git a/assets/images/hyperexecute/integration/products/qtest/5.png b/assets/images/hyperexecute/integration/products/qtest/5.png
new file mode 100644
index 00000000..cda89e3d
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/qtest/5.png differ
diff --git a/assets/images/hyperexecute/integration/products/testsigma/1.png b/assets/images/hyperexecute/integration/products/testsigma/1.png
new file mode 100644
index 00000000..df9cc9cc
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/testsigma/1.png differ
diff --git a/assets/images/hyperexecute/integration/products/testsigma/2.png b/assets/images/hyperexecute/integration/products/testsigma/2.png
new file mode 100644
index 00000000..d3dcb118
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/testsigma/2.png differ
diff --git a/assets/images/hyperexecute/integration/products/tosca/tosca-commander/tosca-sap.png b/assets/images/hyperexecute/integration/products/tosca/tosca-commander/tosca-sap.png
new file mode 100644
index 00000000..2522ae32
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/tosca/tosca-commander/tosca-sap.png differ
diff --git a/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step10.png b/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step10.png
new file mode 100644
index 00000000..a8c46e75
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step10.png differ
diff --git a/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step11.png b/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step11.png
new file mode 100644
index 00000000..d1acbe31
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step11.png differ
diff --git a/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step12.png b/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step12.png
new file mode 100644
index 00000000..d531db9e
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step12.png differ
diff --git a/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step13.png b/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step13.png
new file mode 100644
index 00000000..a514588b
Binary files /dev/null and b/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step13.png differ
diff --git a/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step7.png b/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step7.png
index ddadd259..784d8572 100644
Binary files a/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step7.png and b/assets/images/hyperexecute/integration/products/tosca/tosca-dex/step7.png differ
diff --git a/assets/images/hyperexecute/junit/junit_artifacts_1.png b/assets/images/hyperexecute/junit/junit_artifacts_1.png
deleted file mode 100644
index 1aa6a299..00000000
Binary files a/assets/images/hyperexecute/junit/junit_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/junit/junit_artifacts_2.png b/assets/images/hyperexecute/junit/junit_artifacts_2.png
deleted file mode 100644
index c5d29a17..00000000
Binary files a/assets/images/hyperexecute/junit/junit_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/junit/junit_autosplit_1.png b/assets/images/hyperexecute/junit/junit_autosplit_1.png
deleted file mode 100644
index ab6c237a..00000000
Binary files a/assets/images/hyperexecute/junit/junit_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/junit/junit_autosplit_2.png b/assets/images/hyperexecute/junit/junit_autosplit_2.png
deleted file mode 100644
index 04e70420..00000000
Binary files a/assets/images/hyperexecute/junit/junit_autosplit_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/junit/junit_autosplit_cmd_1.png b/assets/images/hyperexecute/junit/junit_autosplit_cmd_1.png
deleted file mode 100644
index b43141dd..00000000
Binary files a/assets/images/hyperexecute/junit/junit_autosplit_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/junit/junit_autosplit_cmd_2.png b/assets/images/hyperexecute/junit/junit_autosplit_cmd_2.png
deleted file mode 100644
index 29ee8369..00000000
Binary files a/assets/images/hyperexecute/junit/junit_autosplit_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/junit/junit_matrix_1.png b/assets/images/hyperexecute/junit/junit_matrix_1.png
deleted file mode 100644
index eee9c3a9..00000000
Binary files a/assets/images/hyperexecute/junit/junit_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/junit/junit_matrix_2.png b/assets/images/hyperexecute/junit/junit_matrix_2.png
deleted file mode 100644
index 9608b09c..00000000
Binary files a/assets/images/hyperexecute/junit/junit_matrix_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/junit/junit_matrix_cmd_1.png b/assets/images/hyperexecute/junit/junit_matrix_cmd_1.png
deleted file mode 100644
index 48b0898b..00000000
Binary files a/assets/images/hyperexecute/junit/junit_matrix_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/junit/junit_matrix_cmd_2.png b/assets/images/hyperexecute/junit/junit_matrix_cmd_2.png
deleted file mode 100644
index 801a53e3..00000000
Binary files a/assets/images/hyperexecute/junit/junit_matrix_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/concepts/concepts1.png b/assets/images/hyperexecute/knowledge-base/concepts/concepts1.png
deleted file mode 100644
index a927850a..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/concepts/concepts1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/concepts/concepts2.png b/assets/images/hyperexecute/knowledge-base/concepts/concepts2.png
deleted file mode 100644
index 326d7d23..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/concepts/concepts2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/concepts/hyperexecute-test-history.png b/assets/images/hyperexecute/knowledge-base/concepts/hyperexecute-test-history.png
deleted file mode 100644
index ae9c7ab4..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/concepts/hyperexecute-test-history.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/concepts/hyperexecute-test.png b/assets/images/hyperexecute/knowledge-base/concepts/hyperexecute-test.png
deleted file mode 100644
index 0f3d1b07..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/concepts/hyperexecute-test.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/concepts/task.png b/assets/images/hyperexecute/knowledge-base/concepts/task.png
deleted file mode 100644
index 97c46cc4..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/concepts/task.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/how-to-guide/local-driver-os.png b/assets/images/hyperexecute/knowledge-base/how-to-guide/local-driver-os.png
new file mode 100644
index 00000000..6b89d78e
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/how-to-guide/local-driver-os.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/how-to-guide/local-web-driver.png b/assets/images/hyperexecute/knowledge-base/how-to-guide/local-web-driver.png
new file mode 100644
index 00000000..e9c6a076
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/how-to-guide/local-web-driver.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/reports/cucumber.png b/assets/images/hyperexecute/knowledge-base/reports/cucumber.png
index 1bd00ef3..19bdd96a 100644
Binary files a/assets/images/hyperexecute/knowledge-base/reports/cucumber.png and b/assets/images/hyperexecute/knowledge-base/reports/cucumber.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/reports/cypress-mochawesome-report.gif b/assets/images/hyperexecute/knowledge-base/reports/cypress-mochawesome-report.gif
new file mode 100644
index 00000000..6e48ec73
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/reports/cypress-mochawesome-report.gif differ
diff --git a/assets/images/hyperexecute/knowledge-base/reports/error-categorization-report.gif b/assets/images/hyperexecute/knowledge-base/reports/error-categorization-report.gif
new file mode 100644
index 00000000..6bba7850
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/reports/error-categorization-report.gif differ
diff --git a/assets/images/hyperexecute/knowledge-base/reports/junit-xml-report.png b/assets/images/hyperexecute/knowledge-base/reports/junit-xml-report.png
new file mode 100644
index 00000000..94aeb17c
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/reports/junit-xml-report.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/reports/karate-reports.png b/assets/images/hyperexecute/knowledge-base/reports/karate-reports.png
new file mode 100644
index 00000000..9f2bd372
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/reports/karate-reports.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/reports/mochawesome-report.png b/assets/images/hyperexecute/knowledge-base/reports/mochawesome-report.png
deleted file mode 100644
index 36cc4ece..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/reports/mochawesome-report.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/reports/playwright-html-report.gif b/assets/images/hyperexecute/knowledge-base/reports/playwright-html-report.gif
new file mode 100644
index 00000000..c1894930
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/reports/playwright-html-report.gif differ
diff --git a/assets/images/hyperexecute/knowledge-base/reports/testng-native-1.png b/assets/images/hyperexecute/knowledge-base/reports/testng-native-1.png
new file mode 100644
index 00000000..9afafceb
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/reports/testng-native-1.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/reports/testng-native-2.png b/assets/images/hyperexecute/knowledge-base/reports/testng-native-2.png
new file mode 100644
index 00000000..ee72759b
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/reports/testng-native-2.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/secrets/3.png b/assets/images/hyperexecute/knowledge-base/secrets/3.png
deleted file mode 100644
index a7a3ff5b..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/secrets/3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/secrets/39.png b/assets/images/hyperexecute/knowledge-base/secrets/39.png
deleted file mode 100644
index 57ee175d..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/secrets/39.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/secrets/4.png b/assets/images/hyperexecute/knowledge-base/secrets/4.png
deleted file mode 100644
index d324ae94..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/secrets/4.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/secrets/40.png b/assets/images/hyperexecute/knowledge-base/secrets/40.png
deleted file mode 100644
index a2d6cfae..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/secrets/40.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/secrets/5.png b/assets/images/hyperexecute/knowledge-base/secrets/5.png
deleted file mode 100644
index 0e76e155..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/secrets/5.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/secrets/Hyperexecute-concurrency-banner.png b/assets/images/hyperexecute/knowledge-base/secrets/Hyperexecute-concurrency-banner.png
deleted file mode 100644
index 23bcfb2c..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/secrets/Hyperexecute-concurrency-banner.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/username-key/hyperexecute-how-to-get-my-username-and-access-key-cta.png b/assets/images/hyperexecute/knowledge-base/username-key/hyperexecute-how-to-get-my-username-and-access-key-cta.png
deleted file mode 100644
index acb66aed..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/username-key/hyperexecute-how-to-get-my-username-and-access-key-cta.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/username-key/hyperexecute-how-to-get-my-username-and-access-key.png b/assets/images/hyperexecute/knowledge-base/username-key/hyperexecute-how-to-get-my-username-and-access-key.png
deleted file mode 100644
index 874dec44..00000000
Binary files a/assets/images/hyperexecute/knowledge-base/username-key/hyperexecute-how-to-get-my-username-and-access-key.png and /dev/null differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/build-health.png b/assets/images/hyperexecute/knowledge-base/widgets/build-health.png
new file mode 100644
index 00000000..15a28a60
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/build-health.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/concurrency-trends.png b/assets/images/hyperexecute/knowledge-base/widgets/concurrency-trends.png
new file mode 100644
index 00000000..c3cb2a46
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/concurrency-trends.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/error-stats.png b/assets/images/hyperexecute/knowledge-base/widgets/error-stats.png
new file mode 100644
index 00000000..8fe76de9
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/error-stats.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/step1.png b/assets/images/hyperexecute/knowledge-base/widgets/step1.png
new file mode 100644
index 00000000..3b139aff
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/step1.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/step2.png b/assets/images/hyperexecute/knowledge-base/widgets/step2.png
new file mode 100644
index 00000000..be47bb13
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/step2.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/step3.png b/assets/images/hyperexecute/knowledge-base/widgets/step3.png
new file mode 100644
index 00000000..199b7bc9
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/step3.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/step4.png b/assets/images/hyperexecute/knowledge-base/widgets/step4.png
new file mode 100644
index 00000000..0fdfe523
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/step4.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/step5.png b/assets/images/hyperexecute/knowledge-base/widgets/step5.png
new file mode 100644
index 00000000..61991b92
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/step5.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/step6.png b/assets/images/hyperexecute/knowledge-base/widgets/step6.png
new file mode 100644
index 00000000..ab7a4a84
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/step6.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/test-browser-1.png b/assets/images/hyperexecute/knowledge-base/widgets/test-browser-1.png
new file mode 100644
index 00000000..058bf15f
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/test-browser-1.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/test-browser.png b/assets/images/hyperexecute/knowledge-base/widgets/test-browser.png
new file mode 100644
index 00000000..dde8be2a
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/test-browser.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/test-health.png b/assets/images/hyperexecute/knowledge-base/widgets/test-health.png
new file mode 100644
index 00000000..e378b0c8
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/test-health.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/test-os.png b/assets/images/hyperexecute/knowledge-base/widgets/test-os.png
new file mode 100644
index 00000000..def291b3
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/test-os.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/test-status-ratio.png b/assets/images/hyperexecute/knowledge-base/widgets/test-status-ratio.png
new file mode 100644
index 00000000..3ed23489
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/test-status-ratio.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/test-summary.png b/assets/images/hyperexecute/knowledge-base/widgets/test-summary.png
new file mode 100644
index 00000000..0c636391
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/test-summary.png differ
diff --git a/assets/images/hyperexecute/knowledge-base/widgets/test-trends.png b/assets/images/hyperexecute/knowledge-base/widgets/test-trends.png
new file mode 100644
index 00000000..de0ac9fc
Binary files /dev/null and b/assets/images/hyperexecute/knowledge-base/widgets/test-trends.png differ
diff --git a/assets/images/hyperexecute/nightwatch/nightwatch_artifacts_1.png b/assets/images/hyperexecute/nightwatch/nightwatch_artifacts_1.png
deleted file mode 100644
index bbd16b4b..00000000
Binary files a/assets/images/hyperexecute/nightwatch/nightwatch_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nightwatch/nightwatch_artifacts_2.png b/assets/images/hyperexecute/nightwatch/nightwatch_artifacts_2.png
deleted file mode 100644
index 2e94f59d..00000000
Binary files a/assets/images/hyperexecute/nightwatch/nightwatch_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nightwatch/nightwatch_autosplit_1.png b/assets/images/hyperexecute/nightwatch/nightwatch_autosplit_1.png
deleted file mode 100644
index bbd16b4b..00000000
Binary files a/assets/images/hyperexecute/nightwatch/nightwatch_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nightwatch/nightwatch_autosplit_cmd_1.png b/assets/images/hyperexecute/nightwatch/nightwatch_autosplit_cmd_1.png
deleted file mode 100644
index 091b0597..00000000
Binary files a/assets/images/hyperexecute/nightwatch/nightwatch_autosplit_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nightwatch/nightwatch_matrix_1.png b/assets/images/hyperexecute/nightwatch/nightwatch_matrix_1.png
deleted file mode 100644
index 6d272d7d..00000000
Binary files a/assets/images/hyperexecute/nightwatch/nightwatch_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nunit/nunit_artifacts_1.png b/assets/images/hyperexecute/nunit/nunit_artifacts_1.png
deleted file mode 100644
index d620944f..00000000
Binary files a/assets/images/hyperexecute/nunit/nunit_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nunit/nunit_artifacts_2.png b/assets/images/hyperexecute/nunit/nunit_artifacts_2.png
deleted file mode 100644
index 80b4ef1e..00000000
Binary files a/assets/images/hyperexecute/nunit/nunit_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nunit/nunit_autosplit_1.png b/assets/images/hyperexecute/nunit/nunit_autosplit_1.png
deleted file mode 100644
index 45c38c59..00000000
Binary files a/assets/images/hyperexecute/nunit/nunit_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nunit/nunit_autosplit_2.png b/assets/images/hyperexecute/nunit/nunit_autosplit_2.png
deleted file mode 100644
index 54336264..00000000
Binary files a/assets/images/hyperexecute/nunit/nunit_autosplit_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nunit/nunit_autosplit_cmd_1.png b/assets/images/hyperexecute/nunit/nunit_autosplit_cmd_1.png
deleted file mode 100644
index b7f02573..00000000
Binary files a/assets/images/hyperexecute/nunit/nunit_autosplit_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nunit/nunit_autosplit_cmd_2.png b/assets/images/hyperexecute/nunit/nunit_autosplit_cmd_2.png
deleted file mode 100644
index 08f0e7bf..00000000
Binary files a/assets/images/hyperexecute/nunit/nunit_autosplit_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nunit/nunit_matrix_1.png b/assets/images/hyperexecute/nunit/nunit_matrix_1.png
deleted file mode 100644
index 89257e80..00000000
Binary files a/assets/images/hyperexecute/nunit/nunit_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nunit/nunit_matrix_2.png b/assets/images/hyperexecute/nunit/nunit_matrix_2.png
deleted file mode 100644
index bdcf1752..00000000
Binary files a/assets/images/hyperexecute/nunit/nunit_matrix_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nunit/nunit_matrix_cmd_1.png b/assets/images/hyperexecute/nunit/nunit_matrix_cmd_1.png
deleted file mode 100644
index 223fd9e9..00000000
Binary files a/assets/images/hyperexecute/nunit/nunit_matrix_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/nunit/nunit_matrix_cmd_2.png b/assets/images/hyperexecute/nunit/nunit_matrix_cmd_2.png
deleted file mode 100644
index 71d80bea..00000000
Binary files a/assets/images/hyperexecute/nunit/nunit_matrix_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/projects/hyp-projects-create.png b/assets/images/hyperexecute/projects/hyp-projects-create.png
deleted file mode 100644
index 0eb6da81..00000000
Binary files a/assets/images/hyperexecute/projects/hyp-projects-create.png and /dev/null differ
diff --git a/assets/images/hyperexecute/projects/hyp-projects-run.png b/assets/images/hyperexecute/projects/hyp-projects-run.png
deleted file mode 100644
index 96fc769d..00000000
Binary files a/assets/images/hyperexecute/projects/hyp-projects-run.png and /dev/null differ
diff --git a/assets/images/hyperexecute/projects/hyp-projects-setup.png b/assets/images/hyperexecute/projects/hyp-projects-setup.png
deleted file mode 100644
index 0a3c569a..00000000
Binary files a/assets/images/hyperexecute/projects/hyp-projects-setup.png and /dev/null differ
diff --git a/assets/images/hyperexecute/projects/hyp-projects-suite-view.png b/assets/images/hyperexecute/projects/hyp-projects-suite-view.png
deleted file mode 100644
index bbf34b28..00000000
Binary files a/assets/images/hyperexecute/projects/hyp-projects-suite-view.png and /dev/null differ
diff --git a/assets/images/hyperexecute/projects/hyp-projects-view.png b/assets/images/hyperexecute/projects/hyp-projects-view.png
deleted file mode 100644
index 82663980..00000000
Binary files a/assets/images/hyperexecute/projects/hyp-projects-view.png and /dev/null differ
diff --git a/assets/images/hyperexecute/protractor/protractor_artifacts_1.png b/assets/images/hyperexecute/protractor/protractor_artifacts_1.png
deleted file mode 100644
index 67d72195..00000000
Binary files a/assets/images/hyperexecute/protractor/protractor_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/protractor/protractor_artifacts_2.png b/assets/images/hyperexecute/protractor/protractor_artifacts_2.png
deleted file mode 100644
index e06f47c9..00000000
Binary files a/assets/images/hyperexecute/protractor/protractor_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/protractor/protractor_autosplit_1.png b/assets/images/hyperexecute/protractor/protractor_autosplit_1.png
deleted file mode 100644
index 8f361588..00000000
Binary files a/assets/images/hyperexecute/protractor/protractor_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/protractor/protractor_autosplit_cmd_1.png b/assets/images/hyperexecute/protractor/protractor_autosplit_cmd_1.png
deleted file mode 100644
index cf6145a2..00000000
Binary files a/assets/images/hyperexecute/protractor/protractor_autosplit_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/protractor/protractor_matrix_1.png b/assets/images/hyperexecute/protractor/protractor_matrix_1.png
deleted file mode 100644
index 67d72195..00000000
Binary files a/assets/images/hyperexecute/protractor/protractor_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_artefacts_management_1.png b/assets/images/hyperexecute/pytest/pytest_artefacts_management_1.png
deleted file mode 100644
index 8081bc4e..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_artefacts_management_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_artefacts_management_2.png b/assets/images/hyperexecute/pytest/pytest_artefacts_management_2.png
deleted file mode 100644
index 5e521a2c..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_artefacts_management_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_artifacts_1.png b/assets/images/hyperexecute/pytest/pytest_artifacts_1.png
deleted file mode 100644
index 6eac9b91..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_artifacts_2.png b/assets/images/hyperexecute/pytest/pytest_artifacts_2.png
deleted file mode 100644
index 261ef84b..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_autosplit_1.png b/assets/images/hyperexecute/pytest/pytest_autosplit_1.png
deleted file mode 100644
index f2b9b1db..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_autosplit_2.png b/assets/images/hyperexecute/pytest/pytest_autosplit_2.png
deleted file mode 100644
index f5be77f2..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_autosplit_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_autosplit_cmd_1.png b/assets/images/hyperexecute/pytest/pytest_autosplit_cmd_1.png
deleted file mode 100644
index 83a0673f..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_autosplit_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_autosplit_cmd_2.png b/assets/images/hyperexecute/pytest/pytest_autosplit_cmd_2.png
deleted file mode 100644
index 7e666875..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_autosplit_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_autosplit_execution_1.png b/assets/images/hyperexecute/pytest/pytest_autosplit_execution_1.png
deleted file mode 100644
index c2326f03..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_autosplit_execution_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_autosplit_execution_2.png b/assets/images/hyperexecute/pytest/pytest_autosplit_execution_2.png
deleted file mode 100644
index 247f8d2d..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_autosplit_execution_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_autosplit_execution_3.png b/assets/images/hyperexecute/pytest/pytest_autosplit_execution_3.png
deleted file mode 100644
index 655e2b57..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_autosplit_execution_3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_hypertest_1.png b/assets/images/hyperexecute/pytest/pytest_hypertest_1.png
deleted file mode 100644
index 62b87bf8..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_hypertest_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_hypertest_2.png b/assets/images/hyperexecute/pytest/pytest_hypertest_2.png
deleted file mode 100644
index c14d6288..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_hypertest_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_matrix_1.png b/assets/images/hyperexecute/pytest/pytest_matrix_1.png
deleted file mode 100644
index 6eac9b91..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_matrix_2.png b/assets/images/hyperexecute/pytest/pytest_matrix_2.png
deleted file mode 100644
index a6a8bf19..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_matrix_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_matrix_cmd_1.png b/assets/images/hyperexecute/pytest/pytest_matrix_cmd_1.png
deleted file mode 100644
index a61a890a..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_matrix_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_matrix_cmd_2.png b/assets/images/hyperexecute/pytest/pytest_matrix_cmd_2.png
deleted file mode 100644
index e45cae67..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_matrix_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_matrix_execution_latest.png b/assets/images/hyperexecute/pytest/pytest_matrix_execution_latest.png
deleted file mode 100644
index 780c0e00..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_matrix_execution_latest.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_matrix_terminal_1.png b/assets/images/hyperexecute/pytest/pytest_matrix_terminal_1.png
deleted file mode 100644
index 51473379..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_matrix_terminal_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_matrix_terminal_2.png b/assets/images/hyperexecute/pytest/pytest_matrix_terminal_2.png
deleted file mode 100644
index 6b19f759..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_matrix_terminal_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_secret_management_1.png b/assets/images/hyperexecute/pytest/pytest_secret_management_1.png
deleted file mode 100644
index 9778f266..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_secret_management_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_secret_management_2.png b/assets/images/hyperexecute/pytest/pytest_secret_management_2.png
deleted file mode 100644
index ef8d4b33..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_secret_management_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_test_execution_1.png b/assets/images/hyperexecute/pytest/pytest_test_execution_1.png
deleted file mode 100644
index 6a8997dd..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_test_execution_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pytest/pytest_test_execution_2.png b/assets/images/hyperexecute/pytest/pytest_test_execution_2.png
deleted file mode 100644
index a9fe763d..00000000
Binary files a/assets/images/hyperexecute/pytest/pytest_test_execution_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_artefacts_management_1.png b/assets/images/hyperexecute/pyunit/pyunit_artefacts_management_1.png
deleted file mode 100644
index c8db29fe..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_artefacts_management_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_artefacts_management_2.png b/assets/images/hyperexecute/pyunit/pyunit_artefacts_management_2.png
deleted file mode 100644
index fc3e5289..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_artefacts_management_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_artifacts_1.png b/assets/images/hyperexecute/pyunit/pyunit_artifacts_1.png
deleted file mode 100644
index 984e58f4..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_artifacts_2.png b/assets/images/hyperexecute/pyunit/pyunit_artifacts_2.png
deleted file mode 100644
index 43c01d7e..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_autosplit_1.png b/assets/images/hyperexecute/pyunit/pyunit_autosplit_1.png
deleted file mode 100644
index 984e58f4..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_autosplit_2.png b/assets/images/hyperexecute/pyunit/pyunit_autosplit_2.png
deleted file mode 100644
index 14a7279e..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_autosplit_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_autosplit_artifacts_1.png b/assets/images/hyperexecute/pyunit/pyunit_autosplit_artifacts_1.png
deleted file mode 100644
index 984e58f4..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_autosplit_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_autosplit_artifacts_2.png b/assets/images/hyperexecute/pyunit/pyunit_autosplit_artifacts_2.png
deleted file mode 100644
index 43c01d7e..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_autosplit_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_autosplit_cmd_1.png b/assets/images/hyperexecute/pyunit/pyunit_autosplit_cmd_1.png
deleted file mode 100644
index 4979cf24..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_autosplit_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_autosplit_cmd_2.png b/assets/images/hyperexecute/pyunit/pyunit_autosplit_cmd_2.png
deleted file mode 100644
index 6f7b0e10..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_autosplit_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_autosplit_execution_1.png b/assets/images/hyperexecute/pyunit/pyunit_autosplit_execution_1.png
deleted file mode 100644
index e1e18173..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_autosplit_execution_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_autosplit_execution_2.png b/assets/images/hyperexecute/pyunit/pyunit_autosplit_execution_2.png
deleted file mode 100644
index 253f9299..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_autosplit_execution_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_autosplit_execution_3.png b/assets/images/hyperexecute/pyunit/pyunit_autosplit_execution_3.png
deleted file mode 100644
index 5733b39b..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_autosplit_execution_3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_autosplit_execution_latest.png b/assets/images/hyperexecute/pyunit/pyunit_autosplit_execution_latest.png
deleted file mode 100644
index e1e18173..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_autosplit_execution_latest.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_execution_1.png b/assets/images/hyperexecute/pyunit/pyunit_execution_1.png
deleted file mode 100644
index 399fb7ac..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_execution_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_execution_2.png b/assets/images/hyperexecute/pyunit/pyunit_execution_2.png
deleted file mode 100644
index 96e33b81..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_execution_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_execution_3.png b/assets/images/hyperexecute/pyunit/pyunit_execution_3.png
deleted file mode 100644
index c642929c..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_execution_3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_hypertest_1.png b/assets/images/hyperexecute/pyunit/pyunit_hypertest_1.png
deleted file mode 100644
index 57d7c8cd..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_hypertest_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_hypertest_2.png b/assets/images/hyperexecute/pyunit/pyunit_hypertest_2.png
deleted file mode 100644
index 6eb8a7d8..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_hypertest_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_matrix_1.png b/assets/images/hyperexecute/pyunit/pyunit_matrix_1.png
deleted file mode 100644
index cd55ac5e..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_matrix_2.png b/assets/images/hyperexecute/pyunit/pyunit_matrix_2.png
deleted file mode 100644
index 0cb1e202..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_matrix_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_matrix_cmd_1.png b/assets/images/hyperexecute/pyunit/pyunit_matrix_cmd_1.png
deleted file mode 100644
index 91b808bd..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_matrix_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_matrix_cmd_2.png b/assets/images/hyperexecute/pyunit/pyunit_matrix_cmd_2.png
deleted file mode 100644
index 32dae0a7..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_matrix_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_matrix_execution_latest.png b/assets/images/hyperexecute/pyunit/pyunit_matrix_execution_latest.png
deleted file mode 100644
index d52c1f49..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_matrix_execution_latest.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_matrix_terminal_1.png b/assets/images/hyperexecute/pyunit/pyunit_matrix_terminal_1.png
deleted file mode 100644
index 96e33b81..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_matrix_terminal_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_matrix_terminal_2.png b/assets/images/hyperexecute/pyunit/pyunit_matrix_terminal_2.png
deleted file mode 100644
index c642929c..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_matrix_terminal_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_secret_management_1.png b/assets/images/hyperexecute/pyunit/pyunit_secret_management_1.png
deleted file mode 100644
index 9778f266..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_secret_management_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_secret_management_2.png b/assets/images/hyperexecute/pyunit/pyunit_secret_management_2.png
deleted file mode 100644
index ef8d4b33..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_secret_management_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_test_execution_1.png b/assets/images/hyperexecute/pyunit/pyunit_test_execution_1.png
deleted file mode 100644
index fb2feb03..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_test_execution_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/pyunit/pyunit_test_execution_2.png b/assets/images/hyperexecute/pyunit/pyunit_test_execution_2.png
deleted file mode 100644
index 0bd9cd01..00000000
Binary files a/assets/images/hyperexecute/pyunit/pyunit_test_execution_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/release-notes/commit-details.png b/assets/images/hyperexecute/release-notes/commit-details.png
new file mode 100644
index 00000000..3288bf53
Binary files /dev/null and b/assets/images/hyperexecute/release-notes/commit-details.png differ
diff --git a/assets/images/hyperexecute/release-notes/detailed-cypress-logs.png b/assets/images/hyperexecute/release-notes/detailed-cypress-logs.png
new file mode 100644
index 00000000..8d58b261
Binary files /dev/null and b/assets/images/hyperexecute/release-notes/detailed-cypress-logs.png differ
diff --git a/assets/images/hyperexecute/release-notes/release-notes.gif b/assets/images/hyperexecute/release-notes/release-notes.gif
new file mode 100644
index 00000000..c3aefc29
Binary files /dev/null and b/assets/images/hyperexecute/release-notes/release-notes.gif differ
diff --git a/assets/images/hyperexecute/release-notes/release-notes.png b/assets/images/hyperexecute/release-notes/release-notes.png
new file mode 100644
index 00000000..d2db2b39
Binary files /dev/null and b/assets/images/hyperexecute/release-notes/release-notes.png differ
diff --git a/assets/images/hyperexecute/release-notes/teams.png b/assets/images/hyperexecute/release-notes/teams.png
new file mode 100644
index 00000000..0f8aa742
Binary files /dev/null and b/assets/images/hyperexecute/release-notes/teams.png differ
diff --git a/assets/images/hyperexecute/release-notes/test-history-label.gif b/assets/images/hyperexecute/release-notes/test-history-label.gif
new file mode 100644
index 00000000..02e269d3
Binary files /dev/null and b/assets/images/hyperexecute/release-notes/test-history-label.gif differ
diff --git a/assets/images/hyperexecute/robot/robot_artefacts_management_1.pn.png b/assets/images/hyperexecute/robot/robot_artefacts_management_1.pn.png
deleted file mode 100644
index 7d2f04d1..00000000
Binary files a/assets/images/hyperexecute/robot/robot_artefacts_management_1.pn.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_artefacts_management_1.png b/assets/images/hyperexecute/robot/robot_artefacts_management_1.png
deleted file mode 100644
index 7d2f04d1..00000000
Binary files a/assets/images/hyperexecute/robot/robot_artefacts_management_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_artefacts_management_2.png b/assets/images/hyperexecute/robot/robot_artefacts_management_2.png
deleted file mode 100644
index bf28ddbc..00000000
Binary files a/assets/images/hyperexecute/robot/robot_artefacts_management_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_artifacts_1.png b/assets/images/hyperexecute/robot/robot_artifacts_1.png
deleted file mode 100644
index 5029bec4..00000000
Binary files a/assets/images/hyperexecute/robot/robot_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_artifacts_2.png b/assets/images/hyperexecute/robot/robot_artifacts_2.png
deleted file mode 100644
index 5c86e705..00000000
Binary files a/assets/images/hyperexecute/robot/robot_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_autosplit_1.png b/assets/images/hyperexecute/robot/robot_autosplit_1.png
deleted file mode 100644
index 04ef3b56..00000000
Binary files a/assets/images/hyperexecute/robot/robot_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_autosplit_2.png b/assets/images/hyperexecute/robot/robot_autosplit_2.png
deleted file mode 100644
index c96aaf7a..00000000
Binary files a/assets/images/hyperexecute/robot/robot_autosplit_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_autosplit_cmd_1.png b/assets/images/hyperexecute/robot/robot_autosplit_cmd_1.png
deleted file mode 100644
index 104eb636..00000000
Binary files a/assets/images/hyperexecute/robot/robot_autosplit_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_autosplit_cmd_2.png b/assets/images/hyperexecute/robot/robot_autosplit_cmd_2.png
deleted file mode 100644
index 96f37c0b..00000000
Binary files a/assets/images/hyperexecute/robot/robot_autosplit_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_autosplit_execution_1.png b/assets/images/hyperexecute/robot/robot_autosplit_execution_1.png
deleted file mode 100644
index 7d2f04d1..00000000
Binary files a/assets/images/hyperexecute/robot/robot_autosplit_execution_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_autosplit_execution_2.png b/assets/images/hyperexecute/robot/robot_autosplit_execution_2.png
deleted file mode 100644
index 65cf89f4..00000000
Binary files a/assets/images/hyperexecute/robot/robot_autosplit_execution_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_autosplit_execution_3.png b/assets/images/hyperexecute/robot/robot_autosplit_execution_3.png
deleted file mode 100644
index 7c538204..00000000
Binary files a/assets/images/hyperexecute/robot/robot_autosplit_execution_3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_matrix_1.png b/assets/images/hyperexecute/robot/robot_matrix_1.png
deleted file mode 100644
index 5029bec4..00000000
Binary files a/assets/images/hyperexecute/robot/robot_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_matrix_2.png b/assets/images/hyperexecute/robot/robot_matrix_2.png
deleted file mode 100644
index 0d6fed93..00000000
Binary files a/assets/images/hyperexecute/robot/robot_matrix_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_matrix_cmd_1.png b/assets/images/hyperexecute/robot/robot_matrix_cmd_1.png
deleted file mode 100644
index 4a540fcb..00000000
Binary files a/assets/images/hyperexecute/robot/robot_matrix_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_matrix_cmd_2.png b/assets/images/hyperexecute/robot/robot_matrix_cmd_2.png
deleted file mode 100644
index 9725d362..00000000
Binary files a/assets/images/hyperexecute/robot/robot_matrix_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_matrix_execution_latest.png b/assets/images/hyperexecute/robot/robot_matrix_execution_latest.png
deleted file mode 100644
index 35bc5e9c..00000000
Binary files a/assets/images/hyperexecute/robot/robot_matrix_execution_latest.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_matrix_terminal_1.png b/assets/images/hyperexecute/robot/robot_matrix_terminal_1.png
deleted file mode 100644
index 515b2587..00000000
Binary files a/assets/images/hyperexecute/robot/robot_matrix_terminal_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_matrix_terminal_2.png b/assets/images/hyperexecute/robot/robot_matrix_terminal_2.png
deleted file mode 100644
index e2435772..00000000
Binary files a/assets/images/hyperexecute/robot/robot_matrix_terminal_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_secret_management_1.png b/assets/images/hyperexecute/robot/robot_secret_management_1.png
deleted file mode 100644
index 9778f266..00000000
Binary files a/assets/images/hyperexecute/robot/robot_secret_management_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_secret_management_2.png b/assets/images/hyperexecute/robot/robot_secret_management_2.png
deleted file mode 100644
index ef8d4b33..00000000
Binary files a/assets/images/hyperexecute/robot/robot_secret_management_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_test_execution_1.png b/assets/images/hyperexecute/robot/robot_test_execution_1.png
deleted file mode 100644
index 7d2f04d1..00000000
Binary files a/assets/images/hyperexecute/robot/robot_test_execution_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/robot/robot_test_execution_2.png b/assets/images/hyperexecute/robot/robot_test_execution_2.png
deleted file mode 100644
index aae61d1d..00000000
Binary files a/assets/images/hyperexecute/robot/robot_test_execution_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/ruby/ruby_artifacts_1.png b/assets/images/hyperexecute/ruby/ruby_artifacts_1.png
deleted file mode 100644
index 020ee8e5..00000000
Binary files a/assets/images/hyperexecute/ruby/ruby_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/ruby/ruby_artifacts_2.png b/assets/images/hyperexecute/ruby/ruby_artifacts_2.png
deleted file mode 100644
index 2183b666..00000000
Binary files a/assets/images/hyperexecute/ruby/ruby_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/ruby/ruby_autosplit_1.png b/assets/images/hyperexecute/ruby/ruby_autosplit_1.png
deleted file mode 100644
index 020ee8e5..00000000
Binary files a/assets/images/hyperexecute/ruby/ruby_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/ruby/ruby_matrix_1.png b/assets/images/hyperexecute/ruby/ruby_matrix_1.png
deleted file mode 100644
index 60d87184..00000000
Binary files a/assets/images/hyperexecute/ruby/ruby_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_1.png b/assets/images/hyperexecute/specflow/specflow_1.png
deleted file mode 100644
index 327ee00f..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_2.png b/assets/images/hyperexecute/specflow/specflow_2.png
deleted file mode 100644
index cd78683f..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_3.png b/assets/images/hyperexecute/specflow/specflow_3.png
deleted file mode 100644
index 43f65772..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_4.png b/assets/images/hyperexecute/specflow/specflow_4.png
deleted file mode 100644
index 195e6e3d..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_4.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_artifacts_1.png b/assets/images/hyperexecute/specflow/specflow_artifacts_1.png
deleted file mode 100644
index 7fcf98d4..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_artifacts_2.png b/assets/images/hyperexecute/specflow/specflow_artifacts_2.png
deleted file mode 100644
index 01d3d07e..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_autosplit_execution_2.png b/assets/images/hyperexecute/specflow/specflow_autosplit_execution_2.png
deleted file mode 100644
index 5b7e44d7..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_autosplit_execution_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_autosplit_execution_3.png b/assets/images/hyperexecute/specflow/specflow_autosplit_execution_3.png
deleted file mode 100644
index 93bf9621..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_autosplit_execution_3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_autosplit_terminal_1.png b/assets/images/hyperexecute/specflow/specflow_autosplit_terminal_1.png
deleted file mode 100644
index e7a54068..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_autosplit_terminal_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_autosplit_terminal_2.png b/assets/images/hyperexecute/specflow/specflow_autosplit_terminal_2.png
deleted file mode 100644
index b3df2073..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_autosplit_terminal_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_autosplit_terminal_3.png b/assets/images/hyperexecute/specflow/specflow_autosplit_terminal_3.png
deleted file mode 100644
index fb8d9d6e..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_autosplit_terminal_3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_matrix_terminal_1.png b/assets/images/hyperexecute/specflow/specflow_matrix_terminal_1.png
deleted file mode 100644
index 7f428e62..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_matrix_terminal_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_matrix_terminal_2.png b/assets/images/hyperexecute/specflow/specflow_matrix_terminal_2.png
deleted file mode 100644
index 90be75c3..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_matrix_terminal_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_matrix_terminal_3.png b/assets/images/hyperexecute/specflow/specflow_matrix_terminal_3.png
deleted file mode 100644
index 1b72a654..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_matrix_terminal_3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/specflow/specflow_test_execution_2.png b/assets/images/hyperexecute/specflow/specflow_test_execution_2.png
deleted file mode 100644
index b36d8f89..00000000
Binary files a/assets/images/hyperexecute/specflow/specflow_test_execution_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/testng/testng_artifacts_1.png b/assets/images/hyperexecute/testng/testng_artifacts_1.png
deleted file mode 100644
index c668a976..00000000
Binary files a/assets/images/hyperexecute/testng/testng_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/testng/testng_artifacts_2.png b/assets/images/hyperexecute/testng/testng_artifacts_2.png
deleted file mode 100644
index e3e00eb8..00000000
Binary files a/assets/images/hyperexecute/testng/testng_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/testng/testng_autosplit_1.png b/assets/images/hyperexecute/testng/testng_autosplit_1.png
deleted file mode 100644
index 94cf8428..00000000
Binary files a/assets/images/hyperexecute/testng/testng_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/testng/testng_autosplit_2.png b/assets/images/hyperexecute/testng/testng_autosplit_2.png
deleted file mode 100644
index 814cf42f..00000000
Binary files a/assets/images/hyperexecute/testng/testng_autosplit_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/testng/testng_autosplit_cmd_1.png b/assets/images/hyperexecute/testng/testng_autosplit_cmd_1.png
deleted file mode 100644
index e204fd29..00000000
Binary files a/assets/images/hyperexecute/testng/testng_autosplit_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/testng/testng_autosplit_cmd_2.png b/assets/images/hyperexecute/testng/testng_autosplit_cmd_2.png
deleted file mode 100644
index fb2286cf..00000000
Binary files a/assets/images/hyperexecute/testng/testng_autosplit_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/testng/testng_matrix_1.png b/assets/images/hyperexecute/testng/testng_matrix_1.png
deleted file mode 100644
index cd0e3ae5..00000000
Binary files a/assets/images/hyperexecute/testng/testng_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/testng/testng_matrix_2.png b/assets/images/hyperexecute/testng/testng_matrix_2.png
deleted file mode 100644
index b5b01a28..00000000
Binary files a/assets/images/hyperexecute/testng/testng_matrix_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/testng/testng_matrix_cmd_1.png b/assets/images/hyperexecute/testng/testng_matrix_cmd_1.png
deleted file mode 100644
index 3dc03e88..00000000
Binary files a/assets/images/hyperexecute/testng/testng_matrix_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/testng/testng_matrix_cmd_2.png b/assets/images/hyperexecute/testng/testng_matrix_cmd_2.png
deleted file mode 100644
index 4e7d0acc..00000000
Binary files a/assets/images/hyperexecute/testng/testng_matrix_cmd_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/webdriverio/webdriverio_artifacts_1.png b/assets/images/hyperexecute/webdriverio/webdriverio_artifacts_1.png
deleted file mode 100644
index 54de6aad..00000000
Binary files a/assets/images/hyperexecute/webdriverio/webdriverio_artifacts_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/webdriverio/webdriverio_artifacts_2.png b/assets/images/hyperexecute/webdriverio/webdriverio_artifacts_2.png
deleted file mode 100644
index de6deae0..00000000
Binary files a/assets/images/hyperexecute/webdriverio/webdriverio_artifacts_2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/webdriverio/webdriverio_autosplit_1.png b/assets/images/hyperexecute/webdriverio/webdriverio_autosplit_1.png
deleted file mode 100644
index e38a2293..00000000
Binary files a/assets/images/hyperexecute/webdriverio/webdriverio_autosplit_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/webdriverio/webdriverio_autosplit_cmd_1.png b/assets/images/hyperexecute/webdriverio/webdriverio_autosplit_cmd_1.png
deleted file mode 100644
index 94a6e33e..00000000
Binary files a/assets/images/hyperexecute/webdriverio/webdriverio_autosplit_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/webdriverio/webdriverio_matrix_1.png b/assets/images/hyperexecute/webdriverio/webdriverio_matrix_1.png
deleted file mode 100644
index 54de6aad..00000000
Binary files a/assets/images/hyperexecute/webdriverio/webdriverio_matrix_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/webdriverio/webdriverio_matrix_cmd_1.png b/assets/images/hyperexecute/webdriverio/webdriverio_matrix_cmd_1.png
deleted file mode 100644
index 94a6e33e..00000000
Binary files a/assets/images/hyperexecute/webdriverio/webdriverio_matrix_cmd_1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/workflows/hyp-workflow-add.png b/assets/images/hyperexecute/workflows/hyp-workflow-add.png
deleted file mode 100644
index d791c400..00000000
Binary files a/assets/images/hyperexecute/workflows/hyp-workflow-add.png and /dev/null differ
diff --git a/assets/images/hyperexecute/workflows/hyp-workflow-added.png b/assets/images/hyperexecute/workflows/hyp-workflow-added.png
deleted file mode 100644
index b6600a1f..00000000
Binary files a/assets/images/hyperexecute/workflows/hyp-workflow-added.png and /dev/null differ
diff --git a/assets/images/hyperexecute/workflows/hyp-workflow-start.png b/assets/images/hyperexecute/workflows/hyp-workflow-start.png
deleted file mode 100644
index 9bdda5df..00000000
Binary files a/assets/images/hyperexecute/workflows/hyp-workflow-start.png and /dev/null differ
diff --git a/assets/images/hyperexecute/workflows/hyp-workflow-time.png b/assets/images/hyperexecute/workflows/hyp-workflow-time.png
deleted file mode 100644
index bd332ef6..00000000
Binary files a/assets/images/hyperexecute/workflows/hyp-workflow-time.png and /dev/null differ
diff --git a/assets/images/hyperexecute/yaml/1.mp4 b/assets/images/hyperexecute/yaml/1.mp4
new file mode 100644
index 00000000..7c1bc3f6
Binary files /dev/null and b/assets/images/hyperexecute/yaml/1.mp4 differ
diff --git a/assets/images/hyperexecute/yaml/1.png b/assets/images/hyperexecute/yaml/1.png
deleted file mode 100644
index 8f60aedd..00000000
Binary files a/assets/images/hyperexecute/yaml/1.png and /dev/null differ
diff --git a/assets/images/hyperexecute/yaml/2.png b/assets/images/hyperexecute/yaml/2.png
deleted file mode 100644
index 0de9a50e..00000000
Binary files a/assets/images/hyperexecute/yaml/2.png and /dev/null differ
diff --git a/assets/images/hyperexecute/yaml/3.png b/assets/images/hyperexecute/yaml/3.png
deleted file mode 100644
index 7b3d69f0..00000000
Binary files a/assets/images/hyperexecute/yaml/3.png and /dev/null differ
diff --git a/assets/images/hyperexecute/yaml/4.png b/assets/images/hyperexecute/yaml/4.png
deleted file mode 100644
index 082b8d33..00000000
Binary files a/assets/images/hyperexecute/yaml/4.png and /dev/null differ
diff --git a/assets/images/hyperexecute/yaml/output.mp4 b/assets/images/hyperexecute/yaml/output.mp4
new file mode 100644
index 00000000..231ed2cc
Binary files /dev/null and b/assets/images/hyperexecute/yaml/output.mp4 differ
diff --git a/assets/images/hyperexecute/yaml/project.png b/assets/images/hyperexecute/yaml/project.png
new file mode 100644
index 00000000..9a3f3b97
Binary files /dev/null and b/assets/images/hyperexecute/yaml/project.png differ
diff --git a/assets/images/he-yaml/scenario-1.png b/assets/images/hyperexecute/yaml/scenario-1.png
similarity index 100%
rename from assets/images/he-yaml/scenario-1.png
rename to assets/images/hyperexecute/yaml/scenario-1.png
diff --git a/assets/images/he-yaml/scenario-2.jpeg b/assets/images/hyperexecute/yaml/scenario-2.jpeg
similarity index 100%
rename from assets/images/he-yaml/scenario-2.jpeg
rename to assets/images/hyperexecute/yaml/scenario-2.jpeg
diff --git a/assets/images/he-yaml/testRunnerExecutor.png b/assets/images/hyperexecute/yaml/testRunnerExecutor.png
similarity index 100%
rename from assets/images/he-yaml/testRunnerExecutor.png
rename to assets/images/hyperexecute/yaml/testRunnerExecutor.png
diff --git a/assets/images/icons/analytics.png b/assets/images/icons/analytics.png
new file mode 100644
index 00000000..9e43e931
Binary files /dev/null and b/assets/images/icons/analytics.png differ
diff --git a/assets/images/icons/automation.png b/assets/images/icons/automation.png
new file mode 100644
index 00000000..eedf3afb
Binary files /dev/null and b/assets/images/icons/automation.png differ
diff --git a/assets/images/icons/hyp.png b/assets/images/icons/hyp.png
new file mode 100644
index 00000000..4a16594f
Binary files /dev/null and b/assets/images/icons/hyp.png differ
diff --git a/assets/images/icons/other.png b/assets/images/icons/other.png
new file mode 100644
index 00000000..8b05fc9b
Binary files /dev/null and b/assets/images/icons/other.png differ
diff --git a/assets/images/icons/real-time.png b/assets/images/icons/real-time.png
new file mode 100644
index 00000000..b787ef48
Binary files /dev/null and b/assets/images/icons/real-time.png differ
diff --git a/assets/images/icons/smart-ui.png b/assets/images/icons/smart-ui.png
new file mode 100644
index 00000000..4f1f6c53
Binary files /dev/null and b/assets/images/icons/smart-ui.png differ
diff --git a/assets/images/inside-lambdatest-automation-platform/1.webp b/assets/images/inside-lambdatest-automation-platform/1.webp
deleted file mode 100644
index 73825db5..00000000
Binary files a/assets/images/inside-lambdatest-automation-platform/1.webp and /dev/null differ
diff --git a/assets/images/inside-lambdatest-automation-platform/2.webp b/assets/images/inside-lambdatest-automation-platform/2.webp
deleted file mode 100644
index 59aa67c3..00000000
Binary files a/assets/images/inside-lambdatest-automation-platform/2.webp and /dev/null differ
diff --git a/assets/images/inside-lambdatest-automation-platform/3.webp b/assets/images/inside-lambdatest-automation-platform/3.webp
deleted file mode 100644
index bc5b3414..00000000
Binary files a/assets/images/inside-lambdatest-automation-platform/3.webp and /dev/null differ
diff --git a/assets/images/inside-lambdatest-automation-platform/4.webp b/assets/images/inside-lambdatest-automation-platform/4.webp
deleted file mode 100644
index e144c764..00000000
Binary files a/assets/images/inside-lambdatest-automation-platform/4.webp and /dev/null differ
diff --git a/assets/images/inside-lambdatest-automation-platform/5.webp b/assets/images/inside-lambdatest-automation-platform/5.webp
deleted file mode 100644
index 70db1c06..00000000
Binary files a/assets/images/inside-lambdatest-automation-platform/5.webp and /dev/null differ
diff --git a/assets/images/inside-lambdatest-automation-platform/6.webp b/assets/images/inside-lambdatest-automation-platform/6.webp
deleted file mode 100644
index d4d21b0f..00000000
Binary files a/assets/images/inside-lambdatest-automation-platform/6.webp and /dev/null differ
diff --git a/assets/images/inside-lambdatest-automation-platform/7.webp b/assets/images/inside-lambdatest-automation-platform/7.webp
deleted file mode 100644
index e4293b56..00000000
Binary files a/assets/images/inside-lambdatest-automation-platform/7.webp and /dev/null differ
diff --git a/assets/images/inside-lambdatest-automation-platform/automation-logs.webp b/assets/images/inside-lambdatest-automation-platform/automation-logs.webp
deleted file mode 100644
index 8547d02f..00000000
Binary files a/assets/images/inside-lambdatest-automation-platform/automation-logs.webp and /dev/null differ
diff --git a/assets/images/inside-lambdatest-automation-platform/build-view-expand.webp b/assets/images/inside-lambdatest-automation-platform/build-view-expand.webp
deleted file mode 100644
index 7623b326..00000000
Binary files a/assets/images/inside-lambdatest-automation-platform/build-view-expand.webp and /dev/null differ
diff --git a/assets/images/inside-lambdatest-automation-platform/build-view.webp b/assets/images/inside-lambdatest-automation-platform/build-view.webp
deleted file mode 100644
index 2725ae08..00000000
Binary files a/assets/images/inside-lambdatest-automation-platform/build-view.webp and /dev/null differ
diff --git a/assets/images/inside-lambdatest-automation-platform/test-view.webp b/assets/images/inside-lambdatest-automation-platform/test-view.webp
deleted file mode 100644
index 352ad9a3..00000000
Binary files a/assets/images/inside-lambdatest-automation-platform/test-view.webp and /dev/null differ
diff --git a/assets/images/integrations/microsoft-teams/3.png b/assets/images/integrations/microsoft-teams/3.png
new file mode 100644
index 00000000..d7a93f89
Binary files /dev/null and b/assets/images/integrations/microsoft-teams/3.png differ
diff --git a/assets/images/integrations/microsoft-teams/4.png b/assets/images/integrations/microsoft-teams/4.png
new file mode 100644
index 00000000..aceb5035
Binary files /dev/null and b/assets/images/integrations/microsoft-teams/4.png differ
diff --git a/assets/images/integrations/microsoft-teams/connect-worflow.mp4 b/assets/images/integrations/microsoft-teams/connect-worflow.mp4
new file mode 100644
index 00000000..b06ef278
Binary files /dev/null and b/assets/images/integrations/microsoft-teams/connect-worflow.mp4 differ
diff --git a/assets/images/integrations/microsoft-teams/uninstall-workflow.mp4 b/assets/images/integrations/microsoft-teams/uninstall-workflow.mp4
new file mode 100644
index 00000000..28e7956a
Binary files /dev/null and b/assets/images/integrations/microsoft-teams/uninstall-workflow.mp4 differ
diff --git a/assets/images/integrations/simplifyqa/setup-simplifyqa.gif b/assets/images/integrations/simplifyqa/setup-simplifyqa.gif
new file mode 100644
index 00000000..f5775729
Binary files /dev/null and b/assets/images/integrations/simplifyqa/setup-simplifyqa.gif differ
diff --git a/assets/images/integrations/simplifyqa/upload-app.gif b/assets/images/integrations/simplifyqa/upload-app.gif
new file mode 100644
index 00000000..d75cfcca
Binary files /dev/null and b/assets/images/integrations/simplifyqa/upload-app.gif differ
diff --git a/assets/images/integrations/simplifyqa/username-accesskey.gif b/assets/images/integrations/simplifyqa/username-accesskey.gif
new file mode 100644
index 00000000..61e1c564
Binary files /dev/null and b/assets/images/integrations/simplifyqa/username-accesskey.gif differ
diff --git a/assets/images/jira-integration/0.png b/assets/images/jira-integration/0.png
new file mode 100644
index 00000000..b10db511
Binary files /dev/null and b/assets/images/jira-integration/0.png differ
diff --git a/assets/images/jira-integration/1.png b/assets/images/jira-integration/1.png
new file mode 100644
index 00000000..be244dda
Binary files /dev/null and b/assets/images/jira-integration/1.png differ
diff --git a/assets/images/jira-integration/10.png b/assets/images/jira-integration/10.png
new file mode 100644
index 00000000..828f3604
Binary files /dev/null and b/assets/images/jira-integration/10.png differ
diff --git a/assets/images/jira-integration/11.png b/assets/images/jira-integration/11.png
new file mode 100644
index 00000000..a9714d80
Binary files /dev/null and b/assets/images/jira-integration/11.png differ
diff --git a/assets/images/jira-integration/12.png b/assets/images/jira-integration/12.png
new file mode 100644
index 00000000..dcdcfb50
Binary files /dev/null and b/assets/images/jira-integration/12.png differ
diff --git a/assets/images/jira-integration/2.png b/assets/images/jira-integration/2.png
new file mode 100644
index 00000000..d8b2c461
Binary files /dev/null and b/assets/images/jira-integration/2.png differ
diff --git a/assets/images/jira-integration/3.png b/assets/images/jira-integration/3.png
new file mode 100644
index 00000000..08c85893
Binary files /dev/null and b/assets/images/jira-integration/3.png differ
diff --git a/assets/images/jira-integration/4.png b/assets/images/jira-integration/4.png
new file mode 100644
index 00000000..0a002d56
Binary files /dev/null and b/assets/images/jira-integration/4.png differ
diff --git a/assets/images/jira-integration/5.png b/assets/images/jira-integration/5.png
new file mode 100644
index 00000000..59413988
Binary files /dev/null and b/assets/images/jira-integration/5.png differ
diff --git a/assets/images/jira-integration/6.png b/assets/images/jira-integration/6.png
new file mode 100644
index 00000000..6db40fad
Binary files /dev/null and b/assets/images/jira-integration/6.png differ
diff --git a/assets/images/jira-integration/7.png b/assets/images/jira-integration/7.png
new file mode 100644
index 00000000..3ef5345c
Binary files /dev/null and b/assets/images/jira-integration/7.png differ
diff --git a/assets/images/jira-integration/8.png b/assets/images/jira-integration/8.png
new file mode 100644
index 00000000..fe2f9003
Binary files /dev/null and b/assets/images/jira-integration/8.png differ
diff --git a/assets/images/jira-integration/9.png b/assets/images/jira-integration/9.png
new file mode 100644
index 00000000..ee951620
Binary files /dev/null and b/assets/images/jira-integration/9.png differ
diff --git a/assets/images/jira-integration/Screenshot-91.webp b/assets/images/jira-integration/Screenshot-91.webp
deleted file mode 100644
index 0fdce924..00000000
Binary files a/assets/images/jira-integration/Screenshot-91.webp and /dev/null differ
diff --git a/assets/images/jira-integration/Screenshot-92.webp b/assets/images/jira-integration/Screenshot-92.webp
deleted file mode 100644
index 315ecbb2..00000000
Binary files a/assets/images/jira-integration/Screenshot-92.webp and /dev/null differ
diff --git a/assets/images/jira-integration/Screenshot-93.webp b/assets/images/jira-integration/Screenshot-93.webp
deleted file mode 100644
index aa4fee69..00000000
Binary files a/assets/images/jira-integration/Screenshot-93.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-1.webp b/assets/images/jira-integration/jira-1.webp
deleted file mode 100644
index e44a4b2a..00000000
Binary files a/assets/images/jira-integration/jira-1.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-10.webp b/assets/images/jira-integration/jira-10.webp
deleted file mode 100644
index ae59baef..00000000
Binary files a/assets/images/jira-integration/jira-10.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-11.webp b/assets/images/jira-integration/jira-11.webp
deleted file mode 100644
index f55daa1e..00000000
Binary files a/assets/images/jira-integration/jira-11.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-14.webp b/assets/images/jira-integration/jira-14.webp
deleted file mode 100644
index 75be79d7..00000000
Binary files a/assets/images/jira-integration/jira-14.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-2.webp b/assets/images/jira-integration/jira-2.webp
deleted file mode 100644
index 2f0c9100..00000000
Binary files a/assets/images/jira-integration/jira-2.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-3.webp b/assets/images/jira-integration/jira-3.webp
deleted file mode 100644
index 0e20ddbd..00000000
Binary files a/assets/images/jira-integration/jira-3.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-4.webp b/assets/images/jira-integration/jira-4.webp
deleted file mode 100644
index fac048f2..00000000
Binary files a/assets/images/jira-integration/jira-4.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-5.webp b/assets/images/jira-integration/jira-5.webp
deleted file mode 100644
index 18f9c91f..00000000
Binary files a/assets/images/jira-integration/jira-5.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-6.webp b/assets/images/jira-integration/jira-6.webp
deleted file mode 100644
index 3fb09f87..00000000
Binary files a/assets/images/jira-integration/jira-6.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-7.webp b/assets/images/jira-integration/jira-7.webp
deleted file mode 100644
index 9ada447b..00000000
Binary files a/assets/images/jira-integration/jira-7.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-8.webp b/assets/images/jira-integration/jira-8.webp
deleted file mode 100644
index dc24afdc..00000000
Binary files a/assets/images/jira-integration/jira-8.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-9.webp b/assets/images/jira-integration/jira-9.webp
deleted file mode 100644
index fb5e9c03..00000000
Binary files a/assets/images/jira-integration/jira-9.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-1.webp b/assets/images/jira-integration/jira-integration-1.webp
deleted file mode 100644
index 6d257795..00000000
Binary files a/assets/images/jira-integration/jira-integration-1.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-10.webp b/assets/images/jira-integration/jira-integration-10.webp
deleted file mode 100644
index 38002778..00000000
Binary files a/assets/images/jira-integration/jira-integration-10.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-11.webp b/assets/images/jira-integration/jira-integration-11.webp
deleted file mode 100644
index 71c2952d..00000000
Binary files a/assets/images/jira-integration/jira-integration-11.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-12.webp b/assets/images/jira-integration/jira-integration-12.webp
deleted file mode 100644
index 4b822659..00000000
Binary files a/assets/images/jira-integration/jira-integration-12.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-13.webp b/assets/images/jira-integration/jira-integration-13.webp
deleted file mode 100644
index e31f6a3e..00000000
Binary files a/assets/images/jira-integration/jira-integration-13.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-14.webp b/assets/images/jira-integration/jira-integration-14.webp
deleted file mode 100644
index e4fa5f65..00000000
Binary files a/assets/images/jira-integration/jira-integration-14.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-15.webp b/assets/images/jira-integration/jira-integration-15.webp
deleted file mode 100644
index 3d7726a2..00000000
Binary files a/assets/images/jira-integration/jira-integration-15.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-2.webp b/assets/images/jira-integration/jira-integration-2.webp
deleted file mode 100644
index c8cfcdc9..00000000
Binary files a/assets/images/jira-integration/jira-integration-2.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-3.webp b/assets/images/jira-integration/jira-integration-3.webp
deleted file mode 100644
index 9acaa0f2..00000000
Binary files a/assets/images/jira-integration/jira-integration-3.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-4.webp b/assets/images/jira-integration/jira-integration-4.webp
deleted file mode 100644
index f7716fb4..00000000
Binary files a/assets/images/jira-integration/jira-integration-4.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-5.webp b/assets/images/jira-integration/jira-integration-5.webp
deleted file mode 100644
index 4a95ae9e..00000000
Binary files a/assets/images/jira-integration/jira-integration-5.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-6.webp b/assets/images/jira-integration/jira-integration-6.webp
deleted file mode 100644
index 98beafbc..00000000
Binary files a/assets/images/jira-integration/jira-integration-6.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-7.webp b/assets/images/jira-integration/jira-integration-7.webp
deleted file mode 100644
index a41559a8..00000000
Binary files a/assets/images/jira-integration/jira-integration-7.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-8.webp b/assets/images/jira-integration/jira-integration-8.webp
deleted file mode 100644
index d66da3e7..00000000
Binary files a/assets/images/jira-integration/jira-integration-8.webp and /dev/null differ
diff --git a/assets/images/jira-integration/jira-integration-9.webp b/assets/images/jira-integration/jira-integration-9.webp
deleted file mode 100644
index 4b35e2c0..00000000
Binary files a/assets/images/jira-integration/jira-integration-9.webp and /dev/null differ
diff --git a/assets/images/kane-ai/app-test/create-app-test.gif b/assets/images/kane-ai/app-test/create-app-test.gif
new file mode 100644
index 00000000..3189d7ef
Binary files /dev/null and b/assets/images/kane-ai/app-test/create-app-test.gif differ
diff --git a/assets/images/kane-ai/app-test/execute-test.gif b/assets/images/kane-ai/app-test/execute-test.gif
new file mode 100644
index 00000000..72853c03
Binary files /dev/null and b/assets/images/kane-ai/app-test/execute-test.gif differ
diff --git a/assets/images/kane-ai/app-test/save-test-cases.png b/assets/images/kane-ai/app-test/save-test-cases.png
new file mode 100644
index 00000000..4a93dcf8
Binary files /dev/null and b/assets/images/kane-ai/app-test/save-test-cases.png differ
diff --git a/assets/images/kane-ai/app-test/write-test-case.png b/assets/images/kane-ai/app-test/write-test-case.png
new file mode 100644
index 00000000..673e55c5
Binary files /dev/null and b/assets/images/kane-ai/app-test/write-test-case.png differ
diff --git a/assets/images/kane-ai/create-web-test.gif b/assets/images/kane-ai/create-web-test.gif
new file mode 100644
index 00000000..12079230
Binary files /dev/null and b/assets/images/kane-ai/create-web-test.gif differ
diff --git a/assets/images/kane-ai/dedicated-proxy.png b/assets/images/kane-ai/dedicated-proxy.png
new file mode 100644
index 00000000..32a226a1
Binary files /dev/null and b/assets/images/kane-ai/dedicated-proxy.png differ
diff --git a/assets/images/kane-ai/execute-test.gif b/assets/images/kane-ai/execute-test.gif
new file mode 100644
index 00000000..dd0fb256
Binary files /dev/null and b/assets/images/kane-ai/execute-test.gif differ
diff --git a/assets/images/kane-ai/features/datasets/1.png b/assets/images/kane-ai/features/datasets/1.png
new file mode 100644
index 00000000..bb83284d
Binary files /dev/null and b/assets/images/kane-ai/features/datasets/1.png differ
diff --git a/assets/images/kane-ai/features/datasets/2.png b/assets/images/kane-ai/features/datasets/2.png
new file mode 100644
index 00000000..17f759bb
Binary files /dev/null and b/assets/images/kane-ai/features/datasets/2.png differ
diff --git a/assets/images/kane-ai/features/datasets/3.png b/assets/images/kane-ai/features/datasets/3.png
new file mode 100644
index 00000000..757ac215
Binary files /dev/null and b/assets/images/kane-ai/features/datasets/3.png differ
diff --git a/assets/images/kane-ai/features/datasets/4.png b/assets/images/kane-ai/features/datasets/4.png
new file mode 100644
index 00000000..c7db9b4c
Binary files /dev/null and b/assets/images/kane-ai/features/datasets/4.png differ
diff --git a/assets/images/kane-ai/features/datasets/5.png b/assets/images/kane-ai/features/datasets/5.png
new file mode 100644
index 00000000..77a9a23d
Binary files /dev/null and b/assets/images/kane-ai/features/datasets/5.png differ
diff --git a/assets/images/kane-ai/features/datasets/6.png b/assets/images/kane-ai/features/datasets/6.png
new file mode 100644
index 00000000..47b183c1
Binary files /dev/null and b/assets/images/kane-ai/features/datasets/6.png differ
diff --git a/assets/images/kane-ai/features/datasets/7.png b/assets/images/kane-ai/features/datasets/7.png
new file mode 100644
index 00000000..bac00372
Binary files /dev/null and b/assets/images/kane-ai/features/datasets/7.png differ
diff --git a/assets/images/kane-ai/features/datasets/8.png b/assets/images/kane-ai/features/datasets/8.png
new file mode 100644
index 00000000..bc7a8a26
Binary files /dev/null and b/assets/images/kane-ai/features/datasets/8.png differ
diff --git a/assets/images/kane-ai/features/datasets/output.mp4 b/assets/images/kane-ai/features/datasets/output.mp4
new file mode 100644
index 00000000..e1c53ce3
Binary files /dev/null and b/assets/images/kane-ai/features/datasets/output.mp4 differ
diff --git a/assets/images/kane-ai/features/jira-integration/jira-test-case.webp b/assets/images/kane-ai/features/jira-integration/jira-test-case.webp
new file mode 100644
index 00000000..12d8629e
Binary files /dev/null and b/assets/images/kane-ai/features/jira-integration/jira-test-case.webp differ
diff --git a/assets/images/kane-ai/features/jira-integration/live-preview.png b/assets/images/kane-ai/features/jira-integration/live-preview.png
new file mode 100644
index 00000000..ac14fb75
Binary files /dev/null and b/assets/images/kane-ai/features/jira-integration/live-preview.png differ
diff --git a/assets/images/kane-ai/features/jira-integration/marketplace.png b/assets/images/kane-ai/features/jira-integration/marketplace.png
new file mode 100644
index 00000000..daab9bf6
Binary files /dev/null and b/assets/images/kane-ai/features/jira-integration/marketplace.png differ
diff --git a/assets/images/kane-ai/features/modules/1.png b/assets/images/kane-ai/features/modules/1.png
new file mode 100644
index 00000000..28372877
Binary files /dev/null and b/assets/images/kane-ai/features/modules/1.png differ
diff --git a/assets/images/kane-ai/features/modules/2.png b/assets/images/kane-ai/features/modules/2.png
new file mode 100644
index 00000000..1ce58584
Binary files /dev/null and b/assets/images/kane-ai/features/modules/2.png differ
diff --git a/assets/images/kane-ai/features/modules/3.png b/assets/images/kane-ai/features/modules/3.png
new file mode 100644
index 00000000..992c5cc0
Binary files /dev/null and b/assets/images/kane-ai/features/modules/3.png differ
diff --git a/assets/images/kane-ai/features/modules/4.png b/assets/images/kane-ai/features/modules/4.png
new file mode 100644
index 00000000..756e3a6b
Binary files /dev/null and b/assets/images/kane-ai/features/modules/4.png differ
diff --git a/assets/images/kane-ai/features/modules/5.png b/assets/images/kane-ai/features/modules/5.png
new file mode 100644
index 00000000..db2a1434
Binary files /dev/null and b/assets/images/kane-ai/features/modules/5.png differ
diff --git a/assets/images/kane-ai/features/modules/6.png b/assets/images/kane-ai/features/modules/6.png
new file mode 100644
index 00000000..1d4beeb3
Binary files /dev/null and b/assets/images/kane-ai/features/modules/6.png differ
diff --git a/assets/images/kane-ai/features/modules/7.png b/assets/images/kane-ai/features/modules/7.png
new file mode 100644
index 00000000..9269d73b
Binary files /dev/null and b/assets/images/kane-ai/features/modules/7.png differ
diff --git a/assets/images/kane-ai/features/modules/8.png b/assets/images/kane-ai/features/modules/8.png
new file mode 100644
index 00000000..a9fb7adf
Binary files /dev/null and b/assets/images/kane-ai/features/modules/8.png differ
diff --git a/assets/images/kane-ai/features/modules/output.mp4 b/assets/images/kane-ai/features/modules/output.mp4
new file mode 100644
index 00000000..53b2e08f
Binary files /dev/null and b/assets/images/kane-ai/features/modules/output.mp4 differ
diff --git a/assets/images/kane-ai/features/parameters/1.png b/assets/images/kane-ai/features/parameters/1.png
new file mode 100644
index 00000000..d1b7c832
Binary files /dev/null and b/assets/images/kane-ai/features/parameters/1.png differ
diff --git a/assets/images/kane-ai/features/parameters/10.png b/assets/images/kane-ai/features/parameters/10.png
new file mode 100644
index 00000000..2b0108f0
Binary files /dev/null and b/assets/images/kane-ai/features/parameters/10.png differ
diff --git a/assets/images/kane-ai/features/parameters/11.png b/assets/images/kane-ai/features/parameters/11.png
new file mode 100644
index 00000000..674aa1b3
Binary files /dev/null and b/assets/images/kane-ai/features/parameters/11.png differ
diff --git a/assets/images/kane-ai/features/parameters/12.png b/assets/images/kane-ai/features/parameters/12.png
new file mode 100644
index 00000000..43e12800
Binary files /dev/null and b/assets/images/kane-ai/features/parameters/12.png differ
diff --git a/assets/images/kane-ai/features/parameters/13.png b/assets/images/kane-ai/features/parameters/13.png
new file mode 100644
index 00000000..6870da66
Binary files /dev/null and b/assets/images/kane-ai/features/parameters/13.png differ
diff --git a/assets/images/kane-ai/features/parameters/3.png b/assets/images/kane-ai/features/parameters/3.png
new file mode 100644
index 00000000..d31ffd39
Binary files /dev/null and b/assets/images/kane-ai/features/parameters/3.png differ
diff --git a/assets/images/kane-ai/features/parameters/4.png b/assets/images/kane-ai/features/parameters/4.png
new file mode 100644
index 00000000..0a8f1bfb
Binary files /dev/null and b/assets/images/kane-ai/features/parameters/4.png differ
diff --git a/assets/images/kane-ai/features/parameters/7.png b/assets/images/kane-ai/features/parameters/7.png
new file mode 100644
index 00000000..c03e6f00
Binary files /dev/null and b/assets/images/kane-ai/features/parameters/7.png differ
diff --git a/assets/images/kane-ai/features/parameters/8.png b/assets/images/kane-ai/features/parameters/8.png
new file mode 100644
index 00000000..d6d8d20f
Binary files /dev/null and b/assets/images/kane-ai/features/parameters/8.png differ
diff --git a/assets/images/kane-ai/features/parameters/9.png b/assets/images/kane-ai/features/parameters/9.png
new file mode 100644
index 00000000..1a562b25
Binary files /dev/null and b/assets/images/kane-ai/features/parameters/9.png differ
diff --git a/assets/images/kane-ai/features/parameters/output.mp4 b/assets/images/kane-ai/features/parameters/output.mp4
new file mode 100644
index 00000000..a5dd252a
Binary files /dev/null and b/assets/images/kane-ai/features/parameters/output.mp4 differ
diff --git a/assets/images/kane-ai/features/secrets/delete-secret.png b/assets/images/kane-ai/features/secrets/delete-secret.png
new file mode 100644
index 00000000..49c9bad8
Binary files /dev/null and b/assets/images/kane-ai/features/secrets/delete-secret.png differ
diff --git a/assets/images/kane-ai/features/secrets/kane-ai-secret.mp4 b/assets/images/kane-ai/features/secrets/kane-ai-secret.mp4
new file mode 100644
index 00000000..42005814
Binary files /dev/null and b/assets/images/kane-ai/features/secrets/kane-ai-secret.mp4 differ
diff --git a/assets/images/kane-ai/features/secrets/test-manager-secret.gif b/assets/images/kane-ai/features/secrets/test-manager-secret.gif
new file mode 100644
index 00000000..0c7d776d
Binary files /dev/null and b/assets/images/kane-ai/features/secrets/test-manager-secret.gif differ
diff --git a/assets/images/kane-ai/features/secrets/update-secret.png b/assets/images/kane-ai/features/secrets/update-secret.png
new file mode 100644
index 00000000..071e3a40
Binary files /dev/null and b/assets/images/kane-ai/features/secrets/update-secret.png differ
diff --git a/assets/images/kane-ai/features/secrets/use-secrets.mp4 b/assets/images/kane-ai/features/secrets/use-secrets.mp4
new file mode 100644
index 00000000..3b53ac03
Binary files /dev/null and b/assets/images/kane-ai/features/secrets/use-secrets.mp4 differ
diff --git a/assets/images/kane-ai/geolocation.png b/assets/images/kane-ai/geolocation.png
new file mode 100644
index 00000000..d31659ca
Binary files /dev/null and b/assets/images/kane-ai/geolocation.png differ
diff --git a/assets/images/kane-ai/kane-ai-js-execution.mp4 b/assets/images/kane-ai/kane-ai-js-execution.mp4
new file mode 100644
index 00000000..284e9dc4
Binary files /dev/null and b/assets/images/kane-ai/kane-ai-js-execution.mp4 differ
diff --git a/assets/images/kane-ai/kane-ai-project.png b/assets/images/kane-ai/kane-ai-project.png
new file mode 100644
index 00000000..9b4c7daa
Binary files /dev/null and b/assets/images/kane-ai/kane-ai-project.png differ
diff --git a/assets/images/kane-ai/knowledge-base/api-testing/add-api-image.jpg b/assets/images/kane-ai/knowledge-base/api-testing/add-api-image.jpg
new file mode 100644
index 00000000..92ba6d31
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/api-testing/add-api-image.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/api-testing/image1.jpg b/assets/images/kane-ai/knowledge-base/api-testing/image1.jpg
new file mode 100644
index 00000000..64bef08b
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/api-testing/image1.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/api-testing/image10.jpg b/assets/images/kane-ai/knowledge-base/api-testing/image10.jpg
new file mode 100644
index 00000000..065c0c85
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/api-testing/image10.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/api-testing/image13.jpg b/assets/images/kane-ai/knowledge-base/api-testing/image13.jpg
new file mode 100644
index 00000000..bdbbf908
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/api-testing/image13.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/api-testing/image2.jpg b/assets/images/kane-ai/knowledge-base/api-testing/image2.jpg
new file mode 100644
index 00000000..4d9b244c
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/api-testing/image2.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/api-testing/image3.jpg b/assets/images/kane-ai/knowledge-base/api-testing/image3.jpg
new file mode 100644
index 00000000..24dbe5bd
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/api-testing/image3.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/api-testing/image6.jpg b/assets/images/kane-ai/knowledge-base/api-testing/image6.jpg
new file mode 100644
index 00000000..828aa7ab
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/api-testing/image6.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/api-testing/image8.jpg b/assets/images/kane-ai/knowledge-base/api-testing/image8.jpg
new file mode 100644
index 00000000..affcd3ac
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/api-testing/image8.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/api-testing/image9.jpg b/assets/images/kane-ai/knowledge-base/api-testing/image9.jpg
new file mode 100644
index 00000000..aaf7f04b
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/api-testing/image9.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/variables/1.png b/assets/images/kane-ai/knowledge-base/variables/1.png
new file mode 100644
index 00000000..b90faaae
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/variables/1.png differ
diff --git a/assets/images/kane-ai/knowledge-base/variables/json-variable.mp4 b/assets/images/kane-ai/knowledge-base/variables/json-variable.mp4
new file mode 100644
index 00000000..0cfa426c
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/variables/json-variable.mp4 differ
diff --git a/assets/images/kane-ai/knowledge-base/variables/json-variable/image1.jpg b/assets/images/kane-ai/knowledge-base/variables/json-variable/image1.jpg
new file mode 100644
index 00000000..1e3d1ebc
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/variables/json-variable/image1.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/variables/json-variable/image2.jpg b/assets/images/kane-ai/knowledge-base/variables/json-variable/image2.jpg
new file mode 100644
index 00000000..b539eebd
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/variables/json-variable/image2.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/variables/json-variable/image3.jpg b/assets/images/kane-ai/knowledge-base/variables/json-variable/image3.jpg
new file mode 100644
index 00000000..ae80357d
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/variables/json-variable/image3.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/variables/json-variable/image4.jpg b/assets/images/kane-ai/knowledge-base/variables/json-variable/image4.jpg
new file mode 100644
index 00000000..f82d13e1
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/variables/json-variable/image4.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/variables/json-variable/image5.jpg b/assets/images/kane-ai/knowledge-base/variables/json-variable/image5.jpg
new file mode 100644
index 00000000..02b65c41
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/variables/json-variable/image5.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/variables/json-variable/image6.jpg b/assets/images/kane-ai/knowledge-base/variables/json-variable/image6.jpg
new file mode 100644
index 00000000..09f44380
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/variables/json-variable/image6.jpg differ
diff --git a/assets/images/kane-ai/knowledge-base/variables/json-variable/image7.jpg b/assets/images/kane-ai/knowledge-base/variables/json-variable/image7.jpg
new file mode 100644
index 00000000..4d4ab6b2
Binary files /dev/null and b/assets/images/kane-ai/knowledge-base/variables/json-variable/image7.jpg differ
diff --git a/assets/images/kane-ai/release-notes/release-notes.gif b/assets/images/kane-ai/release-notes/release-notes.gif
new file mode 100644
index 00000000..528858a7
Binary files /dev/null and b/assets/images/kane-ai/release-notes/release-notes.gif differ
diff --git a/assets/images/kane-ai/save-test.png b/assets/images/kane-ai/save-test.png
new file mode 100644
index 00000000..8147c4e1
Binary files /dev/null and b/assets/images/kane-ai/save-test.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-ci-cd/image1.png b/assets/images/kane-ai/test-manager/test-plan-ci-cd/image1.png
new file mode 100644
index 00000000..40caa664
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-ci-cd/image1.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-ci-cd/image7.png b/assets/images/kane-ai/test-manager/test-plan-ci-cd/image7.png
new file mode 100644
index 00000000..c5421860
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-ci-cd/image7.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-ci-cd/output.mp4 b/assets/images/kane-ai/test-manager/test-plan-ci-cd/output.mp4
new file mode 100644
index 00000000..e7b79be5
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-ci-cd/output.mp4 differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-ci-cd/step1.png b/assets/images/kane-ai/test-manager/test-plan-ci-cd/step1.png
new file mode 100644
index 00000000..a853fda3
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-ci-cd/step1.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/output.mp4 b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/output.mp4
new file mode 100644
index 00000000..b982bd77
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/output.mp4 differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step1.png b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step1.png
new file mode 100644
index 00000000..d846162a
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step1.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step10.png b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step10.png
new file mode 100644
index 00000000..1cea5cbe
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step10.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step11.png b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step11.png
new file mode 100644
index 00000000..463ffc7c
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step11.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step3.png b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step3.png
new file mode 100644
index 00000000..bfe7ccaf
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step3.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step4.png b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step4.png
new file mode 100644
index 00000000..3c5a6634
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step4.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step5.png b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step5.png
new file mode 100644
index 00000000..cbbfc362
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step5.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step6.png b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step6.png
new file mode 100644
index 00000000..14da7783
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step6.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step7.png b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step7.png
new file mode 100644
index 00000000..3316b841
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step7.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step8.png b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step8.png
new file mode 100644
index 00000000..82582c53
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan-execute-hyperexecute/step8.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan/kane-ai-test-planner-live-preview.png b/assets/images/kane-ai/test-manager/test-plan/kane-ai-test-planner-live-preview.png
new file mode 100644
index 00000000..7b22fb6c
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan/kane-ai-test-planner-live-preview.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan/kane-ai-test-planner-review.png b/assets/images/kane-ai/test-manager/test-plan/kane-ai-test-planner-review.png
new file mode 100644
index 00000000..84721379
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan/kane-ai-test-planner-review.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan/kane-ai-write-test-plan.png b/assets/images/kane-ai/test-manager/test-plan/kane-ai-write-test-plan.png
new file mode 100644
index 00000000..74e4fb2d
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan/kane-ai-write-test-plan.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan/kane-test-plan-result.png b/assets/images/kane-ai/test-manager/test-plan/kane-test-plan-result.png
new file mode 100644
index 00000000..ca1dfc38
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan/kane-test-plan-result.png differ
diff --git a/assets/images/kane-ai/test-manager/test-plan/kane-test-planner.png b/assets/images/kane-ai/test-manager/test-plan/kane-test-planner.png
new file mode 100644
index 00000000..c00689af
Binary files /dev/null and b/assets/images/kane-ai/test-manager/test-plan/kane-test-planner.png differ
diff --git a/assets/images/kane-ai/testcase-code.png b/assets/images/kane-ai/testcase-code.png
new file mode 100644
index 00000000..65df9ab7
Binary files /dev/null and b/assets/images/kane-ai/testcase-code.png differ
diff --git a/assets/images/kane-ai/testcase-summary.png b/assets/images/kane-ai/testcase-summary.png
new file mode 100644
index 00000000..1cc02736
Binary files /dev/null and b/assets/images/kane-ai/testcase-summary.png differ
diff --git a/assets/images/kane-ai/write-web-test.gif b/assets/images/kane-ai/write-web-test.gif
new file mode 100644
index 00000000..c2ae9bfc
Binary files /dev/null and b/assets/images/kane-ai/write-web-test.gif differ
diff --git a/assets/images/live-debug/automation-dashboard.webp b/assets/images/live-debug/automation-dashboard.webp
new file mode 100644
index 00000000..5c060503
Binary files /dev/null and b/assets/images/live-debug/automation-dashboard.webp differ
diff --git a/assets/images/live-debug/inspector.webp b/assets/images/live-debug/inspector.webp
new file mode 100644
index 00000000..0c155014
Binary files /dev/null and b/assets/images/live-debug/inspector.webp differ
diff --git a/assets/images/live-debug/live-debug-option.webp b/assets/images/live-debug/live-debug-option.webp
new file mode 100644
index 00000000..b455818f
Binary files /dev/null and b/assets/images/live-debug/live-debug-option.webp differ
diff --git a/assets/images/live-debug/select-app-automation.webp b/assets/images/live-debug/select-app-automation.webp
new file mode 100644
index 00000000..d45bf087
Binary files /dev/null and b/assets/images/live-debug/select-app-automation.webp differ
diff --git a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-1.webp b/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-1.webp
deleted file mode 100644
index 8618f261..00000000
Binary files a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-1.webp and /dev/null differ
diff --git a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-10.webp b/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-10.webp
deleted file mode 100644
index a491ebad..00000000
Binary files a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-10.webp and /dev/null differ
diff --git a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-2.webp b/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-2.webp
deleted file mode 100644
index 5ce5f55d..00000000
Binary files a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-2.webp and /dev/null differ
diff --git a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-3.webp b/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-3.webp
deleted file mode 100644
index 443bc906..00000000
Binary files a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-3.webp and /dev/null differ
diff --git a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-4.webp b/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-4.webp
deleted file mode 100644
index 01804e35..00000000
Binary files a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-4.webp and /dev/null differ
diff --git a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-5.webp b/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-5.webp
deleted file mode 100644
index e19f0e64..00000000
Binary files a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-5.webp and /dev/null differ
diff --git a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-6.webp b/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-6.webp
deleted file mode 100644
index 614f1ce2..00000000
Binary files a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-6.webp and /dev/null differ
diff --git a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-7.webp b/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-7.webp
deleted file mode 100644
index 19f73e73..00000000
Binary files a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-7.webp and /dev/null differ
diff --git a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-8.webp b/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-8.webp
deleted file mode 100644
index 59dc1009..00000000
Binary files a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-8.webp and /dev/null differ
diff --git a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-9.webp b/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-9.webp
deleted file mode 100644
index 15b7c6f0..00000000
Binary files a/assets/images/mark-as-bug-in-realtime-testing/mark-as-bug-9.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/Capture13.webp b/assets/images/microsoft-teams-integration/Capture13.webp
deleted file mode 100644
index d7a65286..00000000
Binary files a/assets/images/microsoft-teams-integration/Capture13.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/Capture15.webp b/assets/images/microsoft-teams-integration/Capture15.webp
deleted file mode 100644
index c8033dcb..00000000
Binary files a/assets/images/microsoft-teams-integration/Capture15.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/Capture9-4.webp b/assets/images/microsoft-teams-integration/Capture9-4.webp
deleted file mode 100644
index fb98118d..00000000
Binary files a/assets/images/microsoft-teams-integration/Capture9-4.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/teams-1.webp b/assets/images/microsoft-teams-integration/teams-1.webp
deleted file mode 100644
index 1a1acf0c..00000000
Binary files a/assets/images/microsoft-teams-integration/teams-1.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/teams-10.webp b/assets/images/microsoft-teams-integration/teams-10.webp
deleted file mode 100644
index f87fd8b7..00000000
Binary files a/assets/images/microsoft-teams-integration/teams-10.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/teams-11.webp b/assets/images/microsoft-teams-integration/teams-11.webp
deleted file mode 100644
index b1786bc8..00000000
Binary files a/assets/images/microsoft-teams-integration/teams-11.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/teams-12.webp b/assets/images/microsoft-teams-integration/teams-12.webp
deleted file mode 100644
index ef47a99b..00000000
Binary files a/assets/images/microsoft-teams-integration/teams-12.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/teams-2.webp b/assets/images/microsoft-teams-integration/teams-2.webp
deleted file mode 100644
index 15493f86..00000000
Binary files a/assets/images/microsoft-teams-integration/teams-2.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/teams-3.webp b/assets/images/microsoft-teams-integration/teams-3.webp
deleted file mode 100644
index 3ea2a9b2..00000000
Binary files a/assets/images/microsoft-teams-integration/teams-3.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/teams-4.webp b/assets/images/microsoft-teams-integration/teams-4.webp
deleted file mode 100644
index cca2b284..00000000
Binary files a/assets/images/microsoft-teams-integration/teams-4.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/teams-5.webp b/assets/images/microsoft-teams-integration/teams-5.webp
deleted file mode 100644
index dec1d637..00000000
Binary files a/assets/images/microsoft-teams-integration/teams-5.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/teams-6.webp b/assets/images/microsoft-teams-integration/teams-6.webp
deleted file mode 100644
index 4040c99c..00000000
Binary files a/assets/images/microsoft-teams-integration/teams-6.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/teams-7.webp b/assets/images/microsoft-teams-integration/teams-7.webp
deleted file mode 100644
index a6aa8a8a..00000000
Binary files a/assets/images/microsoft-teams-integration/teams-7.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/teams-8.webp b/assets/images/microsoft-teams-integration/teams-8.webp
deleted file mode 100644
index 634633b4..00000000
Binary files a/assets/images/microsoft-teams-integration/teams-8.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/teams-9.webp b/assets/images/microsoft-teams-integration/teams-9.webp
deleted file mode 100644
index 43b834a9..00000000
Binary files a/assets/images/microsoft-teams-integration/teams-9.webp and /dev/null differ
diff --git a/assets/images/microsoft-teams-integration/w5-1.webp b/assets/images/microsoft-teams-integration/w5-1.webp
deleted file mode 100644
index ac2e08c9..00000000
Binary files a/assets/images/microsoft-teams-integration/w5-1.webp and /dev/null differ
diff --git a/assets/images/milestones/1.png b/assets/images/milestones/1.png
new file mode 100644
index 00000000..ab6ffb74
Binary files /dev/null and b/assets/images/milestones/1.png differ
diff --git a/assets/images/milestones/2.png b/assets/images/milestones/2.png
new file mode 100644
index 00000000..75745eef
Binary files /dev/null and b/assets/images/milestones/2.png differ
diff --git a/assets/images/milestones/3.png b/assets/images/milestones/3.png
new file mode 100644
index 00000000..7bca4aad
Binary files /dev/null and b/assets/images/milestones/3.png differ
diff --git a/assets/images/milestones/4.png b/assets/images/milestones/4.png
new file mode 100644
index 00000000..8e6d9255
Binary files /dev/null and b/assets/images/milestones/4.png differ
diff --git a/assets/images/milestones/5.png b/assets/images/milestones/5.png
new file mode 100644
index 00000000..44ca725a
Binary files /dev/null and b/assets/images/milestones/5.png differ
diff --git a/assets/images/milestones/6.png b/assets/images/milestones/6.png
new file mode 100644
index 00000000..8a9c8a77
Binary files /dev/null and b/assets/images/milestones/6.png differ
diff --git a/assets/images/milestones/output.mp4 b/assets/images/milestones/output.mp4
new file mode 100644
index 00000000..010b5459
Binary files /dev/null and b/assets/images/milestones/output.mp4 differ
diff --git a/assets/images/mobile-app-testing/Screenshot-239.webp b/assets/images/mobile-app-testing/Screenshot-239.webp
deleted file mode 100644
index 7e1608ba..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-239.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-240.webp b/assets/images/mobile-app-testing/Screenshot-240.webp
deleted file mode 100644
index b31f1b45..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-240.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-241.webp b/assets/images/mobile-app-testing/Screenshot-241.webp
deleted file mode 100644
index d0f6dfb8..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-241.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-244.webp b/assets/images/mobile-app-testing/Screenshot-244.webp
deleted file mode 100644
index 9457e63b..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-244.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-245.webp b/assets/images/mobile-app-testing/Screenshot-245.webp
deleted file mode 100644
index e3bddce1..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-245.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-246.webp b/assets/images/mobile-app-testing/Screenshot-246.webp
deleted file mode 100644
index b164d58f..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-246.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-247.webp b/assets/images/mobile-app-testing/Screenshot-247.webp
deleted file mode 100644
index 8a7776b5..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-247.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-248.webp b/assets/images/mobile-app-testing/Screenshot-248.webp
deleted file mode 100644
index d72f3111..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-248.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-249.webp b/assets/images/mobile-app-testing/Screenshot-249.webp
deleted file mode 100644
index 88679c9c..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-249.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-250.webp b/assets/images/mobile-app-testing/Screenshot-250.webp
deleted file mode 100644
index d05eccf8..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-250.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-251.webp b/assets/images/mobile-app-testing/Screenshot-251.webp
deleted file mode 100644
index e30c3dbf..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-251.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-252.webp b/assets/images/mobile-app-testing/Screenshot-252.webp
deleted file mode 100644
index 98fd149c..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-252.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-254.webp b/assets/images/mobile-app-testing/Screenshot-254.webp
deleted file mode 100644
index 85fb8197..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-254.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-255.webp b/assets/images/mobile-app-testing/Screenshot-255.webp
deleted file mode 100644
index 2c4bc7a8..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-255.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-257.webp b/assets/images/mobile-app-testing/Screenshot-257.webp
deleted file mode 100644
index 52a7c44a..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-257.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-258.webp b/assets/images/mobile-app-testing/Screenshot-258.webp
deleted file mode 100644
index 255b7f0c..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-258.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-261.webp b/assets/images/mobile-app-testing/Screenshot-261.webp
deleted file mode 100644
index ece83b94..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-261.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-262.webp b/assets/images/mobile-app-testing/Screenshot-262.webp
deleted file mode 100644
index 7c1ee0e7..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-262.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-263.webp b/assets/images/mobile-app-testing/Screenshot-263.webp
deleted file mode 100644
index bb8bfcb3..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-263.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-265.webp b/assets/images/mobile-app-testing/Screenshot-265.webp
deleted file mode 100644
index 349d0a5e..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-265.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/Screenshot-266.webp b/assets/images/mobile-app-testing/Screenshot-266.webp
deleted file mode 100644
index a866c5bf..00000000
Binary files a/assets/images/mobile-app-testing/Screenshot-266.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/accept-the-request.webp b/assets/images/mobile-app-testing/accept-the-request.webp
new file mode 100644
index 00000000..db46a56a
Binary files /dev/null and b/assets/images/mobile-app-testing/accept-the-request.webp differ
diff --git a/assets/images/mobile-app-testing/add-folder.webp b/assets/images/mobile-app-testing/add-folder.webp
new file mode 100644
index 00000000..073ca34d
Binary files /dev/null and b/assets/images/mobile-app-testing/add-folder.webp differ
diff --git a/assets/images/mobile-app-testing/add-multiple-test-cases.webp b/assets/images/mobile-app-testing/add-multiple-test-cases.webp
new file mode 100644
index 00000000..e6e2f776
Binary files /dev/null and b/assets/images/mobile-app-testing/add-multiple-test-cases.webp differ
diff --git a/assets/images/mobile-app-testing/add-test-cases-to-folders.webp b/assets/images/mobile-app-testing/add-test-cases-to-folders.webp
new file mode 100644
index 00000000..b83e95d1
Binary files /dev/null and b/assets/images/mobile-app-testing/add-test-cases-to-folders.webp differ
diff --git a/assets/images/mobile-app-testing/api-token.webp b/assets/images/mobile-app-testing/api-token.webp
new file mode 100644
index 00000000..79ec9df1
Binary files /dev/null and b/assets/images/mobile-app-testing/api-token.webp differ
diff --git a/assets/images/mobile-app-testing/app-details.webp b/assets/images/mobile-app-testing/app-details.webp
new file mode 100644
index 00000000..3fa43aca
Binary files /dev/null and b/assets/images/mobile-app-testing/app-details.webp differ
diff --git a/assets/images/mobile-app-testing/app-settings.webp b/assets/images/mobile-app-testing/app-settings.webp
new file mode 100644
index 00000000..41eb52cc
Binary files /dev/null and b/assets/images/mobile-app-testing/app-settings.webp differ
diff --git a/assets/images/mobile-app-testing/automated-test-cases.webp b/assets/images/mobile-app-testing/automated-test-cases.webp
new file mode 100644
index 00000000..e8c1ca4d
Binary files /dev/null and b/assets/images/mobile-app-testing/automated-test-cases.webp differ
diff --git a/assets/images/mobile-app-testing/automation-dashboard.webp b/assets/images/mobile-app-testing/automation-dashboard.webp
new file mode 100644
index 00000000..3e77cf15
Binary files /dev/null and b/assets/images/mobile-app-testing/automation-dashboard.webp differ
diff --git a/assets/images/mobile-app-testing/automation-test-run.webp b/assets/images/mobile-app-testing/automation-test-run.webp
new file mode 100644
index 00000000..9e92ab14
Binary files /dev/null and b/assets/images/mobile-app-testing/automation-test-run.webp differ
diff --git a/assets/images/mobile-app-testing/bdd-scenarios.webp b/assets/images/mobile-app-testing/bdd-scenarios.webp
new file mode 100644
index 00000000..c2a00fa9
Binary files /dev/null and b/assets/images/mobile-app-testing/bdd-scenarios.webp differ
diff --git a/assets/images/mobile-app-testing/build-and-test-case-summary.webp b/assets/images/mobile-app-testing/build-and-test-case-summary.webp
new file mode 100644
index 00000000..d4d735e7
Binary files /dev/null and b/assets/images/mobile-app-testing/build-and-test-case-summary.webp differ
diff --git a/assets/images/mobile-app-testing/build-page.webp b/assets/images/mobile-app-testing/build-page.webp
new file mode 100644
index 00000000..32ed75ca
Binary files /dev/null and b/assets/images/mobile-app-testing/build-page.webp differ
diff --git a/assets/images/mobile-app-testing/bulk-actions.webp b/assets/images/mobile-app-testing/bulk-actions.webp
new file mode 100644
index 00000000..da3d6ec3
Binary files /dev/null and b/assets/images/mobile-app-testing/bulk-actions.webp differ
diff --git a/assets/images/mobile-app-testing/connect-jira.webp b/assets/images/mobile-app-testing/connect-jira.webp
new file mode 100644
index 00000000..186488b4
Binary files /dev/null and b/assets/images/mobile-app-testing/connect-jira.webp differ
diff --git a/assets/images/mobile-app-testing/copy test cases.webp b/assets/images/mobile-app-testing/copy test cases.webp
new file mode 100644
index 00000000..bef64999
Binary files /dev/null and b/assets/images/mobile-app-testing/copy test cases.webp differ
diff --git a/assets/images/mobile-app-testing/copy-test-cases-option.webp b/assets/images/mobile-app-testing/copy-test-cases-option.webp
new file mode 100644
index 00000000..bef64999
Binary files /dev/null and b/assets/images/mobile-app-testing/copy-test-cases-option.webp differ
diff --git a/assets/images/mobile-app-testing/create-configuration.webp b/assets/images/mobile-app-testing/create-configuration.webp
new file mode 100644
index 00000000..224cc150
Binary files /dev/null and b/assets/images/mobile-app-testing/create-configuration.webp differ
diff --git a/assets/images/mobile-app-testing/create-new-fields.webp b/assets/images/mobile-app-testing/create-new-fields.webp
new file mode 100644
index 00000000..cef9943d
Binary files /dev/null and b/assets/images/mobile-app-testing/create-new-fields.webp differ
diff --git a/assets/images/mobile-app-testing/create-project.webp b/assets/images/mobile-app-testing/create-project.webp
new file mode 100644
index 00000000..3d63b887
Binary files /dev/null and b/assets/images/mobile-app-testing/create-project.webp differ
diff --git a/assets/images/mobile-app-testing/created-test-cases.webp b/assets/images/mobile-app-testing/created-test-cases.webp
new file mode 100644
index 00000000..75aa83ad
Binary files /dev/null and b/assets/images/mobile-app-testing/created-test-cases.webp differ
diff --git a/assets/images/mobile-app-testing/creation-repository.webp b/assets/images/mobile-app-testing/creation-repository.webp
new file mode 100644
index 00000000..332dcad1
Binary files /dev/null and b/assets/images/mobile-app-testing/creation-repository.webp differ
diff --git a/assets/images/mobile-app-testing/custom-fields.webp b/assets/images/mobile-app-testing/custom-fields.webp
new file mode 100644
index 00000000..79503121
Binary files /dev/null and b/assets/images/mobile-app-testing/custom-fields.webp differ
diff --git a/assets/images/mobile-app-testing/download-csv.webp b/assets/images/mobile-app-testing/download-csv.webp
new file mode 100644
index 00000000..3f1cf607
Binary files /dev/null and b/assets/images/mobile-app-testing/download-csv.webp differ
diff --git a/assets/images/mobile-app-testing/dropdown-types.webp b/assets/images/mobile-app-testing/dropdown-types.webp
new file mode 100644
index 00000000..3eee551e
Binary files /dev/null and b/assets/images/mobile-app-testing/dropdown-types.webp differ
diff --git a/assets/images/mobile-app-testing/edit-or-delete.webp b/assets/images/mobile-app-testing/edit-or-delete.webp
new file mode 100644
index 00000000..29eec36c
Binary files /dev/null and b/assets/images/mobile-app-testing/edit-or-delete.webp differ
diff --git a/assets/images/mobile-app-testing/email-notification.webp b/assets/images/mobile-app-testing/email-notification.webp
new file mode 100644
index 00000000..640aa3e1
Binary files /dev/null and b/assets/images/mobile-app-testing/email-notification.webp differ
diff --git a/assets/images/mobile-app-testing/enter-descriptive-details.webp b/assets/images/mobile-app-testing/enter-descriptive-details.webp
new file mode 100644
index 00000000..2974ab74
Binary files /dev/null and b/assets/images/mobile-app-testing/enter-descriptive-details.webp differ
diff --git a/assets/images/mobile-app-testing/execution-detail-page.webp b/assets/images/mobile-app-testing/execution-detail-page.webp
new file mode 100644
index 00000000..a5c2df86
Binary files /dev/null and b/assets/images/mobile-app-testing/execution-detail-page.webp differ
diff --git a/assets/images/mobile-app-testing/execution-history.webp b/assets/images/mobile-app-testing/execution-history.webp
new file mode 100644
index 00000000..f7a53f52
Binary files /dev/null and b/assets/images/mobile-app-testing/execution-history.webp differ
diff --git a/assets/images/mobile-app-testing/export-to-csv.webp b/assets/images/mobile-app-testing/export-to-csv.webp
new file mode 100644
index 00000000..f0d9434c
Binary files /dev/null and b/assets/images/mobile-app-testing/export-to-csv.webp differ
diff --git a/assets/images/mobile-app-testing/filter-test-cases.webp b/assets/images/mobile-app-testing/filter-test-cases.webp
new file mode 100644
index 00000000..347d9ff1
Binary files /dev/null and b/assets/images/mobile-app-testing/filter-test-cases.webp differ
diff --git a/assets/images/mobile-app-testing/generate-test-steps.webp b/assets/images/mobile-app-testing/generate-test-steps.webp
new file mode 100644
index 00000000..1d522766
Binary files /dev/null and b/assets/images/mobile-app-testing/generate-test-steps.webp differ
diff --git a/assets/images/mobile-app-testing/get-app.webp b/assets/images/mobile-app-testing/get-app.webp
new file mode 100644
index 00000000..c1b78230
Binary files /dev/null and b/assets/images/mobile-app-testing/get-app.webp differ
diff --git a/assets/images/mobile-app-testing/go-to-test-manager.webp b/assets/images/mobile-app-testing/go-to-test-manager.webp
new file mode 100644
index 00000000..9b8d3324
Binary files /dev/null and b/assets/images/mobile-app-testing/go-to-test-manager.webp differ
diff --git a/assets/images/mobile-app-testing/import-data.webp b/assets/images/mobile-app-testing/import-data.webp
new file mode 100644
index 00000000..11109354
Binary files /dev/null and b/assets/images/mobile-app-testing/import-data.webp differ
diff --git a/assets/images/mobile-app-testing/imported-projects.webp b/assets/images/mobile-app-testing/imported-projects.webp
new file mode 100644
index 00000000..9c4c3ef7
Binary files /dev/null and b/assets/images/mobile-app-testing/imported-projects.webp differ
diff --git a/assets/images/mobile-app-testing/insights-dashboard.webp b/assets/images/mobile-app-testing/insights-dashboard.webp
new file mode 100644
index 00000000..c0cdd694
Binary files /dev/null and b/assets/images/mobile-app-testing/insights-dashboard.webp differ
diff --git a/assets/images/mobile-app-testing/install-from-app-center.webp b/assets/images/mobile-app-testing/install-from-app-center.webp
new file mode 100644
index 00000000..24276306
Binary files /dev/null and b/assets/images/mobile-app-testing/install-from-app-center.webp differ
diff --git a/assets/images/mobile-app-testing/install-from-app-store.webp b/assets/images/mobile-app-testing/install-from-app-store.webp
new file mode 100644
index 00000000..7e4d5da4
Binary files /dev/null and b/assets/images/mobile-app-testing/install-from-app-store.webp differ
diff --git a/assets/images/mobile-app-testing/install-from-play-store.webp b/assets/images/mobile-app-testing/install-from-play-store.webp
new file mode 100644
index 00000000..85f96958
Binary files /dev/null and b/assets/images/mobile-app-testing/install-from-play-store.webp differ
diff --git a/assets/images/mobile-app-testing/install-from-test-flight.webp b/assets/images/mobile-app-testing/install-from-test-flight.webp
new file mode 100644
index 00000000..098cb263
Binary files /dev/null and b/assets/images/mobile-app-testing/install-from-test-flight.webp differ
diff --git a/assets/images/mobile-app-testing/install-jira.webp b/assets/images/mobile-app-testing/install-jira.webp
new file mode 100644
index 00000000..0944d9dd
Binary files /dev/null and b/assets/images/mobile-app-testing/install-jira.webp differ
diff --git a/assets/images/mobile-app-testing/install-the-app.webp b/assets/images/mobile-app-testing/install-the-app.webp
new file mode 100644
index 00000000..038fb3d0
Binary files /dev/null and b/assets/images/mobile-app-testing/install-the-app.webp differ
diff --git a/assets/images/mobile-app-testing/integrate-projects-and-install.webp b/assets/images/mobile-app-testing/integrate-projects-and-install.webp
new file mode 100644
index 00000000..a264d11c
Binary files /dev/null and b/assets/images/mobile-app-testing/integrate-projects-and-install.webp differ
diff --git a/assets/images/mobile-app-testing/issue-logged.webp b/assets/images/mobile-app-testing/issue-logged.webp
new file mode 100644
index 00000000..08fd45ad
Binary files /dev/null and b/assets/images/mobile-app-testing/issue-logged.webp differ
diff --git a/assets/images/mobile-app-testing/issues-trend.webp b/assets/images/mobile-app-testing/issues-trend.webp
new file mode 100644
index 00000000..57b3b2fd
Binary files /dev/null and b/assets/images/mobile-app-testing/issues-trend.webp differ
diff --git a/assets/images/mobile-app-testing/lambdatest-automation-project.webp b/assets/images/mobile-app-testing/lambdatest-automation-project.webp
new file mode 100644
index 00000000..20826755
Binary files /dev/null and b/assets/images/mobile-app-testing/lambdatest-automation-project.webp differ
diff --git a/assets/images/mobile-app-testing/link-additional-issues.webp b/assets/images/mobile-app-testing/link-additional-issues.webp
new file mode 100644
index 00000000..de7d90df
Binary files /dev/null and b/assets/images/mobile-app-testing/link-additional-issues.webp differ
diff --git a/assets/images/mobile-app-testing/link-issue-to-test-case.webp b/assets/images/mobile-app-testing/link-issue-to-test-case.webp
new file mode 100644
index 00000000..42ebd70c
Binary files /dev/null and b/assets/images/mobile-app-testing/link-issue-to-test-case.webp differ
diff --git a/assets/images/mobile-app-testing/link-issue.webp b/assets/images/mobile-app-testing/link-issue.webp
new file mode 100644
index 00000000..3862d808
Binary files /dev/null and b/assets/images/mobile-app-testing/link-issue.webp differ
diff --git a/assets/images/mobile-app-testing/link-issues.webp b/assets/images/mobile-app-testing/link-issues.webp
new file mode 100644
index 00000000..7275dc59
Binary files /dev/null and b/assets/images/mobile-app-testing/link-issues.webp differ
diff --git a/assets/images/mobile-app-testing/link-projects.webp b/assets/images/mobile-app-testing/link-projects.webp
new file mode 100644
index 00000000..d85945ac
Binary files /dev/null and b/assets/images/mobile-app-testing/link-projects.webp differ
diff --git a/assets/images/mobile-app-testing/link-test-cases.webp b/assets/images/mobile-app-testing/link-test-cases.webp
new file mode 100644
index 00000000..e13f0679
Binary files /dev/null and b/assets/images/mobile-app-testing/link-test-cases.webp differ
diff --git a/assets/images/mobile-app-testing/link-the-bug.webp b/assets/images/mobile-app-testing/link-the-bug.webp
new file mode 100644
index 00000000..02c5ca90
Binary files /dev/null and b/assets/images/mobile-app-testing/link-the-bug.webp differ
diff --git a/assets/images/mobile-app-testing/manage-your-apps.webp b/assets/images/mobile-app-testing/manage-your-apps.webp
new file mode 100644
index 00000000..02ad6453
Binary files /dev/null and b/assets/images/mobile-app-testing/manage-your-apps.webp differ
diff --git a/assets/images/mobile-app-testing/map-fields.webp b/assets/images/mobile-app-testing/map-fields.webp
new file mode 100644
index 00000000..9e5c40f8
Binary files /dev/null and b/assets/images/mobile-app-testing/map-fields.webp differ
diff --git a/assets/images/mobile-app-testing/map-values.webp b/assets/images/mobile-app-testing/map-values.webp
new file mode 100644
index 00000000..f842b5be
Binary files /dev/null and b/assets/images/mobile-app-testing/map-values.webp differ
diff --git a/assets/images/mobile-app-testing/move-test-cases.webp b/assets/images/mobile-app-testing/move-test-cases.webp
new file mode 100644
index 00000000..e183fa4f
Binary files /dev/null and b/assets/images/mobile-app-testing/move-test-cases.webp differ
diff --git a/assets/images/mobile-app-testing/multiple-projects.webp b/assets/images/mobile-app-testing/multiple-projects.webp
new file mode 100644
index 00000000..c176ecad
Binary files /dev/null and b/assets/images/mobile-app-testing/multiple-projects.webp differ
diff --git a/assets/images/mobile-app-testing/multiple-test-cases.webp b/assets/images/mobile-app-testing/multiple-test-cases.webp
new file mode 100644
index 00000000..64bae86f
Binary files /dev/null and b/assets/images/mobile-app-testing/multiple-test-cases.webp differ
diff --git a/assets/images/mobile-app-testing/necessary-details.webp b/assets/images/mobile-app-testing/necessary-details.webp
new file mode 100644
index 00000000..65dea80c
Binary files /dev/null and b/assets/images/mobile-app-testing/necessary-details.webp differ
diff --git a/assets/images/mobile-app-testing/new-fields.webp b/assets/images/mobile-app-testing/new-fields.webp
new file mode 100644
index 00000000..fe48780d
Binary files /dev/null and b/assets/images/mobile-app-testing/new-fields.webp differ
diff --git a/assets/images/mobile-app-testing/new-test-case.webp b/assets/images/mobile-app-testing/new-test-case.webp
new file mode 100644
index 00000000..1afdbd17
Binary files /dev/null and b/assets/images/mobile-app-testing/new-test-case.webp differ
diff --git a/assets/images/mobile-app-testing/newly-created-project.webp b/assets/images/mobile-app-testing/newly-created-project.webp
new file mode 100644
index 00000000..95fa5545
Binary files /dev/null and b/assets/images/mobile-app-testing/newly-created-project.webp differ
diff --git a/assets/images/mobile-app-testing/os-version-from-private-device-pool.webp b/assets/images/mobile-app-testing/os-version-from-private-device-pool.webp
new file mode 100644
index 00000000..06817c0e
Binary files /dev/null and b/assets/images/mobile-app-testing/os-version-from-private-device-pool.webp differ
diff --git a/assets/images/mobile-app-testing/os-versions.webp b/assets/images/mobile-app-testing/os-versions.webp
new file mode 100644
index 00000000..65d16573
Binary files /dev/null and b/assets/images/mobile-app-testing/os-versions.webp differ
diff --git a/assets/images/mobile-app-testing/other-filters.webp b/assets/images/mobile-app-testing/other-filters.webp
new file mode 100644
index 00000000..fb45daf0
Binary files /dev/null and b/assets/images/mobile-app-testing/other-filters.webp differ
diff --git a/assets/images/mobile-app-testing/payment-folder.webp b/assets/images/mobile-app-testing/payment-folder.webp
new file mode 100644
index 00000000..f02191aa
Binary files /dev/null and b/assets/images/mobile-app-testing/payment-folder.webp differ
diff --git a/assets/images/mobile-app-testing/preview-import.webp b/assets/images/mobile-app-testing/preview-import.webp
new file mode 100644
index 00000000..f7f8449d
Binary files /dev/null and b/assets/images/mobile-app-testing/preview-import.webp differ
diff --git a/assets/images/mobile-app-testing/project-dashboard.webp b/assets/images/mobile-app-testing/project-dashboard.webp
new file mode 100644
index 00000000..528a61df
Binary files /dev/null and b/assets/images/mobile-app-testing/project-dashboard.webp differ
diff --git a/assets/images/mobile-app-testing/project-folder.webp b/assets/images/mobile-app-testing/project-folder.webp
new file mode 100644
index 00000000..40e93238
Binary files /dev/null and b/assets/images/mobile-app-testing/project-folder.webp differ
diff --git a/assets/images/mobile-app-testing/raise-a-bug.webp b/assets/images/mobile-app-testing/raise-a-bug.webp
new file mode 100644
index 00000000..0d23fb2a
Binary files /dev/null and b/assets/images/mobile-app-testing/raise-a-bug.webp differ
diff --git a/assets/images/mobile-app-testing/real-device-dashboard.webp b/assets/images/mobile-app-testing/real-device-dashboard.webp
new file mode 100644
index 00000000..cfb55874
Binary files /dev/null and b/assets/images/mobile-app-testing/real-device-dashboard.webp differ
diff --git a/assets/images/mobile-app-testing/real-device-region-feature.webp b/assets/images/mobile-app-testing/real-device-region-feature.webp
new file mode 100644
index 00000000..bad55ccb
Binary files /dev/null and b/assets/images/mobile-app-testing/real-device-region-feature.webp differ
diff --git a/assets/images/mobile-app-testing/real-device-tunnel.webp b/assets/images/mobile-app-testing/real-device-tunnel.webp
new file mode 100644
index 00000000..6db2bac4
Binary files /dev/null and b/assets/images/mobile-app-testing/real-device-tunnel.webp differ
diff --git a/assets/images/mobile-app-testing/real-devices-for-android.webp b/assets/images/mobile-app-testing/real-devices-for-android.webp
new file mode 100644
index 00000000..cab0f7c5
Binary files /dev/null and b/assets/images/mobile-app-testing/real-devices-for-android.webp differ
diff --git a/assets/images/mobile-app-testing/real-devices-for-ios.webp b/assets/images/mobile-app-testing/real-devices-for-ios.webp
new file mode 100644
index 00000000..d8964318
Binary files /dev/null and b/assets/images/mobile-app-testing/real-devices-for-ios.webp differ
diff --git a/assets/images/mobile-app-testing/required-credentials.webp b/assets/images/mobile-app-testing/required-credentials.webp
new file mode 100644
index 00000000..e46bd5ec
Binary files /dev/null and b/assets/images/mobile-app-testing/required-credentials.webp differ
diff --git a/assets/images/mobile-app-testing/save-test-case.webp b/assets/images/mobile-app-testing/save-test-case.webp
new file mode 100644
index 00000000..b767eab5
Binary files /dev/null and b/assets/images/mobile-app-testing/save-test-case.webp differ
diff --git a/assets/images/mobile-app-testing/select-configuration.webp b/assets/images/mobile-app-testing/select-configuration.webp
new file mode 100644
index 00000000..87a53d6d
Binary files /dev/null and b/assets/images/mobile-app-testing/select-configuration.webp differ
diff --git a/assets/images/mobile-app-testing/select-test-cases.webp b/assets/images/mobile-app-testing/select-test-cases.webp
new file mode 100644
index 00000000..06c33f3d
Binary files /dev/null and b/assets/images/mobile-app-testing/select-test-cases.webp differ
diff --git a/assets/images/mobile-app-testing/selected-test-cases-8d5109c9f9d3669c220bb58eb4a0bad0.webp b/assets/images/mobile-app-testing/selected-test-cases-8d5109c9f9d3669c220bb58eb4a0bad0.webp
new file mode 100644
index 00000000..41105b16
Binary files /dev/null and b/assets/images/mobile-app-testing/selected-test-cases-8d5109c9f9d3669c220bb58eb4a0bad0.webp differ
diff --git a/assets/images/mobile-app-testing/share-apps-with-team-members.webp b/assets/images/mobile-app-testing/share-apps-with-team-members.webp
new file mode 100644
index 00000000..286c84cf
Binary files /dev/null and b/assets/images/mobile-app-testing/share-apps-with-team-members.webp differ
diff --git a/assets/images/mobile-app-testing/sleep.webp b/assets/images/mobile-app-testing/sleep.webp
deleted file mode 100644
index 59808852..00000000
Binary files a/assets/images/mobile-app-testing/sleep.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/status-repository.webp b/assets/images/mobile-app-testing/status-repository.webp
new file mode 100644
index 00000000..4b7db7fe
Binary files /dev/null and b/assets/images/mobile-app-testing/status-repository.webp differ
diff --git a/assets/images/mobile-app-testing/system-fields.webp b/assets/images/mobile-app-testing/system-fields.webp
new file mode 100644
index 00000000..aeb72050
Binary files /dev/null and b/assets/images/mobile-app-testing/system-fields.webp differ
diff --git a/assets/images/mobile-app-testing/tags-repository.webp b/assets/images/mobile-app-testing/tags-repository.webp
new file mode 100644
index 00000000..aca62c9c
Binary files /dev/null and b/assets/images/mobile-app-testing/tags-repository.webp differ
diff --git a/assets/images/mobile-app-testing/target-folder.webp b/assets/images/mobile-app-testing/target-folder.webp
new file mode 100644
index 00000000..536b87bb
Binary files /dev/null and b/assets/images/mobile-app-testing/target-folder.webp differ
diff --git a/assets/images/mobile-app-testing/test-case-details-information.webp b/assets/images/mobile-app-testing/test-case-details-information.webp
new file mode 100644
index 00000000..a868b5bf
Binary files /dev/null and b/assets/images/mobile-app-testing/test-case-details-information.webp differ
diff --git a/assets/images/mobile-app-testing/test-case-details.webp b/assets/images/mobile-app-testing/test-case-details.webp
new file mode 100644
index 00000000..61485689
Binary files /dev/null and b/assets/images/mobile-app-testing/test-case-details.webp differ
diff --git a/assets/images/mobile-app-testing/test-case-import.webp b/assets/images/mobile-app-testing/test-case-import.webp
new file mode 100644
index 00000000..f266c8b8
Binary files /dev/null and b/assets/images/mobile-app-testing/test-case-import.webp differ
diff --git a/assets/images/mobile-app-testing/test-case-repository.webp b/assets/images/mobile-app-testing/test-case-repository.webp
new file mode 100644
index 00000000..c8254747
Binary files /dev/null and b/assets/images/mobile-app-testing/test-case-repository.webp differ
diff --git a/assets/images/mobile-app-testing/test-case-templates.webp b/assets/images/mobile-app-testing/test-case-templates.webp
new file mode 100644
index 00000000..1a63b67c
Binary files /dev/null and b/assets/images/mobile-app-testing/test-case-templates.webp differ
diff --git a/assets/images/mobile-app-testing/test-case-title.webp b/assets/images/mobile-app-testing/test-case-title.webp
new file mode 100644
index 00000000..3ecf392a
Binary files /dev/null and b/assets/images/mobile-app-testing/test-case-title.webp differ
diff --git a/assets/images/mobile-app-testing/test-case-trend.webp b/assets/images/mobile-app-testing/test-case-trend.webp
new file mode 100644
index 00000000..14edf541
Binary files /dev/null and b/assets/images/mobile-app-testing/test-case-trend.webp differ
diff --git a/assets/images/mobile-app-testing/test-cases-folder.webp b/assets/images/mobile-app-testing/test-cases-folder.webp
new file mode 100644
index 00000000..40fb7c2c
Binary files /dev/null and b/assets/images/mobile-app-testing/test-cases-folder.webp differ
diff --git a/assets/images/mobile-app-testing/test-cases-linked-to-jira-issue.webp b/assets/images/mobile-app-testing/test-cases-linked-to-jira-issue.webp
new file mode 100644
index 00000000..530192fe
Binary files /dev/null and b/assets/images/mobile-app-testing/test-cases-linked-to-jira-issue.webp differ
diff --git a/assets/images/mobile-app-testing/test-cases-linked.webp b/assets/images/mobile-app-testing/test-cases-linked.webp
new file mode 100644
index 00000000..d4a5ef64
Binary files /dev/null and b/assets/images/mobile-app-testing/test-cases-linked.webp differ
diff --git a/assets/images/mobile-app-testing/test-cases-list.webp b/assets/images/mobile-app-testing/test-cases-list.webp
new file mode 100644
index 00000000..ea2ee52c
Binary files /dev/null and b/assets/images/mobile-app-testing/test-cases-list.webp differ
diff --git a/assets/images/mobile-app-testing/test-steps.webp b/assets/images/mobile-app-testing/test-steps.webp
new file mode 100644
index 00000000..199a1b54
Binary files /dev/null and b/assets/images/mobile-app-testing/test-steps.webp differ
diff --git a/assets/images/mobile-app-testing/ui-inspector-1.webp b/assets/images/mobile-app-testing/ui-inspector-1.webp
deleted file mode 100644
index afd70235..00000000
Binary files a/assets/images/mobile-app-testing/ui-inspector-1.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/ui-inspector-2.webp b/assets/images/mobile-app-testing/ui-inspector-2.webp
deleted file mode 100644
index e1a8a29d..00000000
Binary files a/assets/images/mobile-app-testing/ui-inspector-2.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/unlink-issues.webp b/assets/images/mobile-app-testing/unlink-issues.webp
new file mode 100644
index 00000000..9485d834
Binary files /dev/null and b/assets/images/mobile-app-testing/unlink-issues.webp differ
diff --git a/assets/images/mobile-app-testing/upload-apps-through-android.webp b/assets/images/mobile-app-testing/upload-apps-through-android.webp
new file mode 100644
index 00000000..701f43bf
Binary files /dev/null and b/assets/images/mobile-app-testing/upload-apps-through-android.webp differ
diff --git a/assets/images/mobile-app-testing/upload-apps-through-ios.webp b/assets/images/mobile-app-testing/upload-apps-through-ios.webp
new file mode 100644
index 00000000..63e7d442
Binary files /dev/null and b/assets/images/mobile-app-testing/upload-apps-through-ios.webp differ
diff --git a/assets/images/mobile-app-testing/upload-apps-through-real-device-cloud.webp b/assets/images/mobile-app-testing/upload-apps-through-real-device-cloud.webp
new file mode 100644
index 00000000..3e3a4ce0
Binary files /dev/null and b/assets/images/mobile-app-testing/upload-apps-through-real-device-cloud.webp differ
diff --git a/assets/images/mobile-app-testing/upload-csv-file.webp b/assets/images/mobile-app-testing/upload-csv-file.webp
new file mode 100644
index 00000000..fd61a224
Binary files /dev/null and b/assets/images/mobile-app-testing/upload-csv-file.webp differ
diff --git a/assets/images/mobile-app-testing/upload-through-url.webp b/assets/images/mobile-app-testing/upload-through-url.webp
new file mode 100644
index 00000000..4172da8f
Binary files /dev/null and b/assets/images/mobile-app-testing/upload-through-url.webp differ
diff --git a/assets/images/mobile-app-testing/view-copied-test-cases.webp b/assets/images/mobile-app-testing/view-copied-test-cases.webp
new file mode 100644
index 00000000..73a671d6
Binary files /dev/null and b/assets/images/mobile-app-testing/view-copied-test-cases.webp differ
diff --git a/assets/images/mobile-app-testing/view-moved-test-cases.webp b/assets/images/mobile-app-testing/view-moved-test-cases.webp
new file mode 100644
index 00000000..3bca3c2d
Binary files /dev/null and b/assets/images/mobile-app-testing/view-moved-test-cases.webp differ
diff --git a/assets/images/mobile-app-testing/vol_down.webp b/assets/images/mobile-app-testing/vol_down.webp
deleted file mode 100644
index eb445487..00000000
Binary files a/assets/images/mobile-app-testing/vol_down.webp and /dev/null differ
diff --git a/assets/images/mobile-app-testing/vol_up.webp b/assets/images/mobile-app-testing/vol_up.webp
deleted file mode 100644
index 1562a16e..00000000
Binary files a/assets/images/mobile-app-testing/vol_up.webp and /dev/null differ
diff --git a/assets/images/netlify-integration/n1.png b/assets/images/netlify-integration/n1.png
new file mode 100644
index 00000000..1a4e1cb0
Binary files /dev/null and b/assets/images/netlify-integration/n1.png differ
diff --git a/assets/images/netlify-integration/n2.png b/assets/images/netlify-integration/n2.png
new file mode 100644
index 00000000..d8d413e5
Binary files /dev/null and b/assets/images/netlify-integration/n2.png differ
diff --git a/assets/images/netlify-integration/n3.png b/assets/images/netlify-integration/n3.png
new file mode 100644
index 00000000..990432ca
Binary files /dev/null and b/assets/images/netlify-integration/n3.png differ
diff --git a/assets/images/netlify-integration/n4.png b/assets/images/netlify-integration/n4.png
new file mode 100644
index 00000000..dd9ab9ae
Binary files /dev/null and b/assets/images/netlify-integration/n4.png differ
diff --git a/assets/images/netlify-integration/n5.png b/assets/images/netlify-integration/n5.png
new file mode 100644
index 00000000..4648181f
Binary files /dev/null and b/assets/images/netlify-integration/n5.png differ
diff --git a/assets/images/netlify-integration/n6.png b/assets/images/netlify-integration/n6.png
new file mode 100644
index 00000000..f8be760e
Binary files /dev/null and b/assets/images/netlify-integration/n6.png differ
diff --git a/assets/images/playwright-testing/lighthouse-report.png b/assets/images/playwright-testing/lighthouse-report.png
new file mode 100644
index 00000000..e237014d
Binary files /dev/null and b/assets/images/playwright-testing/lighthouse-report.png differ
diff --git a/assets/images/playwright-testing/webview-test.png b/assets/images/playwright-testing/webview-test.png
new file mode 100644
index 00000000..af4d369a
Binary files /dev/null and b/assets/images/playwright-testing/webview-test.png differ
diff --git a/assets/images/practitest-integration/1.jpeg b/assets/images/practitest-integration/1.jpeg
new file mode 100644
index 00000000..d3778cb3
Binary files /dev/null and b/assets/images/practitest-integration/1.jpeg differ
diff --git a/assets/images/practitest-integration/1.mp4 b/assets/images/practitest-integration/1.mp4
new file mode 100644
index 00000000..241c118f
Binary files /dev/null and b/assets/images/practitest-integration/1.mp4 differ
diff --git a/assets/images/practitest-integration/1.webp b/assets/images/practitest-integration/1.webp
deleted file mode 100644
index df2693ab..00000000
Binary files a/assets/images/practitest-integration/1.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/10.webp b/assets/images/practitest-integration/10.webp
deleted file mode 100644
index e6ea3eca..00000000
Binary files a/assets/images/practitest-integration/10.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/11.webp b/assets/images/practitest-integration/11.webp
deleted file mode 100644
index 2020ee4b..00000000
Binary files a/assets/images/practitest-integration/11.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/12.webp b/assets/images/practitest-integration/12.webp
deleted file mode 100644
index a414a9b8..00000000
Binary files a/assets/images/practitest-integration/12.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/13.webp b/assets/images/practitest-integration/13.webp
deleted file mode 100644
index 6d4851af..00000000
Binary files a/assets/images/practitest-integration/13.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/14.webp b/assets/images/practitest-integration/14.webp
deleted file mode 100644
index 9a8e868c..00000000
Binary files a/assets/images/practitest-integration/14.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/2.mp4 b/assets/images/practitest-integration/2.mp4
new file mode 100644
index 00000000..816b8fd2
Binary files /dev/null and b/assets/images/practitest-integration/2.mp4 differ
diff --git a/assets/images/practitest-integration/2.webp b/assets/images/practitest-integration/2.webp
deleted file mode 100644
index a2e96315..00000000
Binary files a/assets/images/practitest-integration/2.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/3.mp4 b/assets/images/practitest-integration/3.mp4
new file mode 100644
index 00000000..a35887f3
Binary files /dev/null and b/assets/images/practitest-integration/3.mp4 differ
diff --git a/assets/images/practitest-integration/3.webp b/assets/images/practitest-integration/3.webp
deleted file mode 100644
index 2e0de16b..00000000
Binary files a/assets/images/practitest-integration/3.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/4.webp b/assets/images/practitest-integration/4.webp
deleted file mode 100644
index 11c710da..00000000
Binary files a/assets/images/practitest-integration/4.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/5.webp b/assets/images/practitest-integration/5.webp
deleted file mode 100644
index 5706727c..00000000
Binary files a/assets/images/practitest-integration/5.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/6.webp b/assets/images/practitest-integration/6.webp
deleted file mode 100644
index dd5d92b6..00000000
Binary files a/assets/images/practitest-integration/6.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/7.webp b/assets/images/practitest-integration/7.webp
deleted file mode 100644
index 412b5f5f..00000000
Binary files a/assets/images/practitest-integration/7.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/8.webp b/assets/images/practitest-integration/8.webp
deleted file mode 100644
index 2ac1ab96..00000000
Binary files a/assets/images/practitest-integration/8.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/9.webp b/assets/images/practitest-integration/9.webp
deleted file mode 100644
index 43986373..00000000
Binary files a/assets/images/practitest-integration/9.webp and /dev/null differ
diff --git a/assets/images/practitest-integration/project.png b/assets/images/practitest-integration/project.png
new file mode 100644
index 00000000..0dd14ea6
Binary files /dev/null and b/assets/images/practitest-integration/project.png differ
diff --git a/assets/images/preloaded-chrome/addmore-ex.webp b/assets/images/preloaded-chrome/addmore-ex.webp
deleted file mode 100644
index a4b4adf4..00000000
Binary files a/assets/images/preloaded-chrome/addmore-ex.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/chrome.webp b/assets/images/preloaded-chrome/chrome.webp
deleted file mode 100644
index dbbbc146..00000000
Binary files a/assets/images/preloaded-chrome/chrome.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/chromeex-icon.webp b/assets/images/preloaded-chrome/chromeex-icon.webp
deleted file mode 100644
index 796eef79..00000000
Binary files a/assets/images/preloaded-chrome/chromeex-icon.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/delete-dialog.webp b/assets/images/preloaded-chrome/delete-dialog.webp
deleted file mode 100644
index ef3ac32d..00000000
Binary files a/assets/images/preloaded-chrome/delete-dialog.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/kebab.webp b/assets/images/preloaded-chrome/kebab.webp
deleted file mode 100644
index 173b2580..00000000
Binary files a/assets/images/preloaded-chrome/kebab.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/no-extension.webp b/assets/images/preloaded-chrome/no-extension.webp
deleted file mode 100644
index 9ade0d86..00000000
Binary files a/assets/images/preloaded-chrome/no-extension.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/noextension.webp b/assets/images/preloaded-chrome/noextension.webp
deleted file mode 100644
index 378d1436..00000000
Binary files a/assets/images/preloaded-chrome/noextension.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/note-section.webp b/assets/images/preloaded-chrome/note-section.webp
deleted file mode 100644
index 2d02fead..00000000
Binary files a/assets/images/preloaded-chrome/note-section.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/pin.webp b/assets/images/preloaded-chrome/pin.webp
deleted file mode 100644
index a85d5144..00000000
Binary files a/assets/images/preloaded-chrome/pin.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/remove-ex.webp b/assets/images/preloaded-chrome/remove-ex.webp
deleted file mode 100644
index 082b6fc9..00000000
Binary files a/assets/images/preloaded-chrome/remove-ex.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/step-2.webp b/assets/images/preloaded-chrome/step-2.webp
deleted file mode 100644
index 76353564..00000000
Binary files a/assets/images/preloaded-chrome/step-2.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/step-3.webp b/assets/images/preloaded-chrome/step-3.webp
deleted file mode 100644
index c59b91f9..00000000
Binary files a/assets/images/preloaded-chrome/step-3.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/step-4.webp b/assets/images/preloaded-chrome/step-4.webp
deleted file mode 100644
index a4d59b65..00000000
Binary files a/assets/images/preloaded-chrome/step-4.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/step-5.webp b/assets/images/preloaded-chrome/step-5.webp
deleted file mode 100644
index 46b058b5..00000000
Binary files a/assets/images/preloaded-chrome/step-5.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/step-6.webp b/assets/images/preloaded-chrome/step-6.webp
deleted file mode 100644
index 5b9cbbb9..00000000
Binary files a/assets/images/preloaded-chrome/step-6.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/step-7.webp b/assets/images/preloaded-chrome/step-7.webp
deleted file mode 100644
index c8797d05..00000000
Binary files a/assets/images/preloaded-chrome/step-7.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/tango.webp b/assets/images/preloaded-chrome/tango.webp
deleted file mode 100644
index c105a23e..00000000
Binary files a/assets/images/preloaded-chrome/tango.webp and /dev/null differ
diff --git a/assets/images/preloaded-chrome/vm.webp b/assets/images/preloaded-chrome/vm.webp
deleted file mode 100644
index b75d9828..00000000
Binary files a/assets/images/preloaded-chrome/vm.webp and /dev/null differ
diff --git a/assets/images/puppeteer-testing/pyppeteer-dashboard.webp b/assets/images/puppeteer-testing/pyppeteer-dashboard.webp
new file mode 100644
index 00000000..ae17c91c
Binary files /dev/null and b/assets/images/puppeteer-testing/pyppeteer-dashboard.webp differ
diff --git a/assets/images/puppeteer-testing/pyppeteer-test-view.webp b/assets/images/puppeteer-testing/pyppeteer-test-view.webp
new file mode 100644
index 00000000..150e7979
Binary files /dev/null and b/assets/images/puppeteer-testing/pyppeteer-test-view.webp differ
diff --git a/assets/images/qtest-integration/qtest1.png b/assets/images/qtest-integration/qtest1.png
new file mode 100644
index 00000000..0ca02754
Binary files /dev/null and b/assets/images/qtest-integration/qtest1.png differ
diff --git a/assets/images/qtest-integration/qtest_img_2.png b/assets/images/qtest-integration/qtest_img_2.png
new file mode 100644
index 00000000..391f8ec0
Binary files /dev/null and b/assets/images/qtest-integration/qtest_img_2.png differ
diff --git a/assets/images/real-device-app-testing/accessibility-1.png b/assets/images/real-device-app-testing/accessibility-1.png
new file mode 100644
index 00000000..d751d951
Binary files /dev/null and b/assets/images/real-device-app-testing/accessibility-1.png differ
diff --git a/assets/images/real-device-app-testing/accessibility-2.png b/assets/images/real-device-app-testing/accessibility-2.png
new file mode 100644
index 00000000..6f3d7079
Binary files /dev/null and b/assets/images/real-device-app-testing/accessibility-2.png differ
diff --git a/assets/images/real-device-app-testing/adbmanual.webp b/assets/images/real-device-app-testing/adbmanual.webp
new file mode 100644
index 00000000..e0821ad5
Binary files /dev/null and b/assets/images/real-device-app-testing/adbmanual.webp differ
diff --git a/assets/images/real-device-app-testing/app-controls.webp b/assets/images/real-device-app-testing/app-controls.webp
new file mode 100644
index 00000000..089a37ea
Binary files /dev/null and b/assets/images/real-device-app-testing/app-controls.webp differ
diff --git a/assets/images/real-device-app-testing/biometric-authentication/biometric-authentication.png b/assets/images/real-device-app-testing/biometric-authentication/biometric-authentication.png
new file mode 100644
index 00000000..04178204
Binary files /dev/null and b/assets/images/real-device-app-testing/biometric-authentication/biometric-authentication.png differ
diff --git a/assets/images/biometric-authentication/biometric-ss.png b/assets/images/real-device-app-testing/biometric-authentication/biometric-ss.png
similarity index 100%
rename from assets/images/biometric-authentication/biometric-ss.png
rename to assets/images/real-device-app-testing/biometric-authentication/biometric-ss.png
diff --git a/assets/images/real-device-app-testing/camera-injection/step1.gif b/assets/images/real-device-app-testing/camera-injection/step1.gif
new file mode 100644
index 00000000..f4474a41
Binary files /dev/null and b/assets/images/real-device-app-testing/camera-injection/step1.gif differ
diff --git a/assets/images/real-device-app-testing/camera-injection/step2.gif b/assets/images/real-device-app-testing/camera-injection/step2.gif
new file mode 100644
index 00000000..67e8b2e6
Binary files /dev/null and b/assets/images/real-device-app-testing/camera-injection/step2.gif differ
diff --git a/assets/images/real-device-app-testing/device-controls.webp b/assets/images/real-device-app-testing/device-controls.webp
new file mode 100644
index 00000000..8206c355
Binary files /dev/null and b/assets/images/real-device-app-testing/device-controls.webp differ
diff --git a/assets/images/real-device-app-testing/device-logs.webp b/assets/images/real-device-app-testing/device-logs.webp
new file mode 100644
index 00000000..d2c4a9bf
Binary files /dev/null and b/assets/images/real-device-app-testing/device-logs.webp differ
diff --git a/assets/images/real-device-app-testing/gps-location.webp b/assets/images/real-device-app-testing/gps-location.webp
new file mode 100644
index 00000000..e7b401b9
Binary files /dev/null and b/assets/images/real-device-app-testing/gps-location.webp differ
diff --git a/assets/images/real-device-app-testing/ios-settings-real-device.png b/assets/images/real-device-app-testing/ios-settings-real-device.png
new file mode 100644
index 00000000..a0cb05a8
Binary files /dev/null and b/assets/images/real-device-app-testing/ios-settings-real-device.png differ
diff --git a/assets/images/real-device-app-testing/ip-geolocation.webp b/assets/images/real-device-app-testing/ip-geolocation.webp
new file mode 100644
index 00000000..2cefca02
Binary files /dev/null and b/assets/images/real-device-app-testing/ip-geolocation.webp differ
diff --git a/assets/images/real-device-app-testing/mark-as-bug-app-testing.webp b/assets/images/real-device-app-testing/mark-as-bug-app-testing.webp
new file mode 100644
index 00000000..12b1e741
Binary files /dev/null and b/assets/images/real-device-app-testing/mark-as-bug-app-testing.webp differ
diff --git a/assets/images/real-device-app-testing/network-logs-real-app.webp b/assets/images/real-device-app-testing/network-logs-real-app.webp
new file mode 100644
index 00000000..19566ecd
Binary files /dev/null and b/assets/images/real-device-app-testing/network-logs-real-app.webp differ
diff --git a/assets/images/real-device-app-testing/network-throttling-real-device.webp b/assets/images/real-device-app-testing/network-throttling-real-device.webp
new file mode 100644
index 00000000..a01a1b52
Binary files /dev/null and b/assets/images/real-device-app-testing/network-throttling-real-device.webp differ
diff --git a/assets/images/real-device-app-testing/real-device-app-testing-home.webp b/assets/images/real-device-app-testing/real-device-app-testing-home.webp
new file mode 100644
index 00000000..e5a7f916
Binary files /dev/null and b/assets/images/real-device-app-testing/real-device-app-testing-home.webp differ
diff --git a/assets/images/real-device-app-testing/real-device-gallery.webp b/assets/images/real-device-app-testing/real-device-gallery.webp
new file mode 100644
index 00000000..76d05036
Binary files /dev/null and b/assets/images/real-device-app-testing/real-device-gallery.webp differ
diff --git a/assets/images/real-device-app-testing/record-session.webp b/assets/images/real-device-app-testing/record-session.webp
new file mode 100644
index 00000000..3d22e668
Binary files /dev/null and b/assets/images/real-device-app-testing/record-session.webp differ
diff --git a/assets/images/real-device-app-testing/settings-real-device.webp b/assets/images/real-device-app-testing/settings-real-device.webp
new file mode 100644
index 00000000..dfad8173
Binary files /dev/null and b/assets/images/real-device-app-testing/settings-real-device.webp differ
diff --git a/assets/images/real-device-app-testing/switch-device-real-device.webp b/assets/images/real-device-app-testing/switch-device-real-device.webp
new file mode 100644
index 00000000..0a651d3f
Binary files /dev/null and b/assets/images/real-device-app-testing/switch-device-real-device.webp differ
diff --git a/assets/images/real-device-app-testing/talkback.png b/assets/images/real-device-app-testing/talkback.png
new file mode 100644
index 00000000..2c93b40b
Binary files /dev/null and b/assets/images/real-device-app-testing/talkback.png differ
diff --git a/assets/images/real-device-app-testing/teams/bulk-distribute.gif b/assets/images/real-device-app-testing/teams/bulk-distribute.gif
new file mode 100644
index 00000000..efcd6ba4
Binary files /dev/null and b/assets/images/real-device-app-testing/teams/bulk-distribute.gif differ
diff --git a/assets/images/real-device-app-testing/teams/deallocate-device.gif b/assets/images/real-device-app-testing/teams/deallocate-device.gif
new file mode 100644
index 00000000..74a8d137
Binary files /dev/null and b/assets/images/real-device-app-testing/teams/deallocate-device.gif differ
diff --git a/assets/images/real-device-app-testing/teams/edit-allocation.gif b/assets/images/real-device-app-testing/teams/edit-allocation.gif
new file mode 100644
index 00000000..f55810e0
Binary files /dev/null and b/assets/images/real-device-app-testing/teams/edit-allocation.gif differ
diff --git a/assets/images/real-device-app-testing/teams/filters.png b/assets/images/real-device-app-testing/teams/filters.png
new file mode 100644
index 00000000..85db917c
Binary files /dev/null and b/assets/images/real-device-app-testing/teams/filters.png differ
diff --git a/assets/images/real-device-app-testing/teams/uni-distribute.gif b/assets/images/real-device-app-testing/teams/uni-distribute.gif
new file mode 100644
index 00000000..6563e353
Binary files /dev/null and b/assets/images/real-device-app-testing/teams/uni-distribute.gif differ
diff --git a/assets/images/real-device-app-testing/test-manager.webp b/assets/images/real-device-app-testing/test-manager.webp
new file mode 100644
index 00000000..4e711e5e
Binary files /dev/null and b/assets/images/real-device-app-testing/test-manager.webp differ
diff --git a/assets/images/real-device-app-testing/ui-inspector.webp b/assets/images/real-device-app-testing/ui-inspector.webp
new file mode 100644
index 00000000..a77ef3ad
Binary files /dev/null and b/assets/images/real-device-app-testing/ui-inspector.webp differ
diff --git a/assets/images/real-device-app-testing/upload-files-real-device.webp b/assets/images/real-device-app-testing/upload-files-real-device.webp
new file mode 100644
index 00000000..58689e34
Binary files /dev/null and b/assets/images/real-device-app-testing/upload-files-real-device.webp differ
diff --git a/assets/images/real-device-browser-testing/chrome-devtools-browser-testing.webp b/assets/images/real-device-browser-testing/chrome-devtools-browser-testing.webp
new file mode 100644
index 00000000..9dce82a5
Binary files /dev/null and b/assets/images/real-device-browser-testing/chrome-devtools-browser-testing.webp differ
diff --git a/assets/images/real-device-browser-testing/device-control-browser-testing.webp b/assets/images/real-device-browser-testing/device-control-browser-testing.webp
new file mode 100644
index 00000000..df73466c
Binary files /dev/null and b/assets/images/real-device-browser-testing/device-control-browser-testing.webp differ
diff --git a/assets/images/real-device-browser-testing/gallery-browser-testing.webp b/assets/images/real-device-browser-testing/gallery-browser-testing.webp
new file mode 100644
index 00000000..026d5134
Binary files /dev/null and b/assets/images/real-device-browser-testing/gallery-browser-testing.webp differ
diff --git a/assets/images/real-device-browser-testing/gps-location-browser-testing.webp b/assets/images/real-device-browser-testing/gps-location-browser-testing.webp
new file mode 100644
index 00000000..3f50c8f2
Binary files /dev/null and b/assets/images/real-device-browser-testing/gps-location-browser-testing.webp differ
diff --git a/assets/images/real-device-browser-testing/ios-settings-real-device.png b/assets/images/real-device-browser-testing/ios-settings-real-device.png
new file mode 100644
index 00000000..fbdc4499
Binary files /dev/null and b/assets/images/real-device-browser-testing/ios-settings-real-device.png differ
diff --git a/assets/images/real-device-browser-testing/ip-geolocation-browser-testing.webp b/assets/images/real-device-browser-testing/ip-geolocation-browser-testing.webp
new file mode 100644
index 00000000..f775bc33
Binary files /dev/null and b/assets/images/real-device-browser-testing/ip-geolocation-browser-testing.webp differ
diff --git a/assets/images/real-device-browser-testing/mark-as-bug-browser-testing.webp b/assets/images/real-device-browser-testing/mark-as-bug-browser-testing.webp
new file mode 100644
index 00000000..3d65c73c
Binary files /dev/null and b/assets/images/real-device-browser-testing/mark-as-bug-browser-testing.webp differ
diff --git a/assets/images/real-device-browser-testing/network-throttling-browser-testing.webp b/assets/images/real-device-browser-testing/network-throttling-browser-testing.webp
new file mode 100644
index 00000000..7031b707
Binary files /dev/null and b/assets/images/real-device-browser-testing/network-throttling-browser-testing.webp differ
diff --git a/assets/images/real-device-browser-testing/private-cloud-vs-public-cloud.webp b/assets/images/real-device-browser-testing/private-cloud-vs-public-cloud.webp
new file mode 100644
index 00000000..8b062f25
Binary files /dev/null and b/assets/images/real-device-browser-testing/private-cloud-vs-public-cloud.webp differ
diff --git a/assets/images/real-device-browser-testing/real-browser-ios-url.webp b/assets/images/real-device-browser-testing/real-browser-ios-url.webp
new file mode 100644
index 00000000..531d07ff
Binary files /dev/null and b/assets/images/real-device-browser-testing/real-browser-ios-url.webp differ
diff --git a/assets/images/real-device-browser-testing/real-browser-testing-android-url.webp b/assets/images/real-device-browser-testing/real-browser-testing-android-url.webp
new file mode 100644
index 00000000..057da5cf
Binary files /dev/null and b/assets/images/real-device-browser-testing/real-browser-testing-android-url.webp differ
diff --git a/assets/images/real-device-browser-testing/real-device-browser-browser.webp b/assets/images/real-device-browser-testing/real-device-browser-browser.webp
new file mode 100644
index 00000000..51012605
Binary files /dev/null and b/assets/images/real-device-browser-testing/real-device-browser-browser.webp differ
diff --git a/assets/images/real-device-browser-testing/real-device-browser-home.webp b/assets/images/real-device-browser-testing/real-device-browser-home.webp
new file mode 100644
index 00000000..78fe2466
Binary files /dev/null and b/assets/images/real-device-browser-testing/real-device-browser-home.webp differ
diff --git a/assets/images/real-device-browser-testing/real-device-browser-testing-home.webp b/assets/images/real-device-browser-testing/real-device-browser-testing-home.webp
new file mode 100644
index 00000000..7b2807b3
Binary files /dev/null and b/assets/images/real-device-browser-testing/real-device-browser-testing-home.webp differ
diff --git a/assets/images/real-device-browser-testing/real-device-browser-testing-os.webp b/assets/images/real-device-browser-testing/real-device-browser-testing-os.webp
new file mode 100644
index 00000000..015c3647
Binary files /dev/null and b/assets/images/real-device-browser-testing/real-device-browser-testing-os.webp differ
diff --git a/assets/images/real-device-browser-testing/real-device-browser-tunnel.webp b/assets/images/real-device-browser-testing/real-device-browser-tunnel.webp
new file mode 100644
index 00000000..32d5242e
Binary files /dev/null and b/assets/images/real-device-browser-testing/real-device-browser-tunnel.webp differ
diff --git a/assets/images/real-device-browser-testing/record-browser-testing.webp b/assets/images/real-device-browser-testing/record-browser-testing.webp
new file mode 100644
index 00000000..c18df594
Binary files /dev/null and b/assets/images/real-device-browser-testing/record-browser-testing.webp differ
diff --git a/assets/images/real-device-browser-testing/safari-web-inspector.webp b/assets/images/real-device-browser-testing/safari-web-inspector.webp
new file mode 100644
index 00000000..ea8b19a6
Binary files /dev/null and b/assets/images/real-device-browser-testing/safari-web-inspector.webp differ
diff --git a/assets/images/real-device-browser-testing/settings-real-browser-testing.webp b/assets/images/real-device-browser-testing/settings-real-browser-testing.webp
new file mode 100644
index 00000000..d9c5881e
Binary files /dev/null and b/assets/images/real-device-browser-testing/settings-real-browser-testing.webp differ
diff --git a/assets/images/real-device-browser-testing/switch-browser-testing.webp b/assets/images/real-device-browser-testing/switch-browser-testing.webp
new file mode 100644
index 00000000..a1b50329
Binary files /dev/null and b/assets/images/real-device-browser-testing/switch-browser-testing.webp differ
diff --git a/assets/images/real-device-browser-testing/test-manager-browser-testing.webp b/assets/images/real-device-browser-testing/test-manager-browser-testing.webp
new file mode 100644
index 00000000..a391ebf4
Binary files /dev/null and b/assets/images/real-device-browser-testing/test-manager-browser-testing.webp differ
diff --git a/assets/images/real-time-browser-testing/country.webp b/assets/images/real-time-browser-testing/country.webp
deleted file mode 100644
index 19e516cb..00000000
Binary files a/assets/images/real-time-browser-testing/country.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/mark-as-bug-5.webp b/assets/images/real-time-browser-testing/mark-as-bug-5.webp
deleted file mode 100644
index 01804e35..00000000
Binary files a/assets/images/real-time-browser-testing/mark-as-bug-5.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/mark-as-bug-6.webp b/assets/images/real-time-browser-testing/mark-as-bug-6.webp
deleted file mode 100644
index e19f0e64..00000000
Binary files a/assets/images/real-time-browser-testing/mark-as-bug-6.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/mark-as-bug-7.webp b/assets/images/real-time-browser-testing/mark-as-bug-7.webp
deleted file mode 100644
index 614f1ce2..00000000
Binary files a/assets/images/real-time-browser-testing/mark-as-bug-7.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/mark-as-bug-8.webp b/assets/images/real-time-browser-testing/mark-as-bug-8.webp
deleted file mode 100644
index 19f73e73..00000000
Binary files a/assets/images/real-time-browser-testing/mark-as-bug-8.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/mark-as-bug.webp b/assets/images/real-time-browser-testing/mark-as-bug.webp
deleted file mode 100644
index 15b7c6f0..00000000
Binary files a/assets/images/real-time-browser-testing/mark-as-bug.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/real-time-1.webp b/assets/images/real-time-browser-testing/real-time-1.webp
deleted file mode 100644
index a203166b..00000000
Binary files a/assets/images/real-time-browser-testing/real-time-1.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/real-time-2.webp b/assets/images/real-time-browser-testing/real-time-2.webp
deleted file mode 100644
index 06b7e40a..00000000
Binary files a/assets/images/real-time-browser-testing/real-time-2.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/real-time-3.webp b/assets/images/real-time-browser-testing/real-time-3.webp
deleted file mode 100644
index 5ce5f55d..00000000
Binary files a/assets/images/real-time-browser-testing/real-time-3.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/real-time-4.webp b/assets/images/real-time-browser-testing/real-time-4.webp
deleted file mode 100644
index 443bc906..00000000
Binary files a/assets/images/real-time-browser-testing/real-time-4.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/real-time-browser-testing-1.webp b/assets/images/real-time-browser-testing/real-time-browser-testing-1.webp
deleted file mode 100644
index d7b78b8c..00000000
Binary files a/assets/images/real-time-browser-testing/real-time-browser-testing-1.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/real-time-browser-testing-2.webp b/assets/images/real-time-browser-testing/real-time-browser-testing-2.webp
deleted file mode 100644
index 38fbba9c..00000000
Binary files a/assets/images/real-time-browser-testing/real-time-browser-testing-2.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/real-time-browser-testing-3.webp b/assets/images/real-time-browser-testing/real-time-browser-testing-3.webp
deleted file mode 100644
index e5ac25ce..00000000
Binary files a/assets/images/real-time-browser-testing/real-time-browser-testing-3.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/real-time.webp b/assets/images/real-time-browser-testing/real-time.webp
deleted file mode 100644
index 80d807a1..00000000
Binary files a/assets/images/real-time-browser-testing/real-time.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/resolution-1.webp b/assets/images/real-time-browser-testing/resolution-1.webp
deleted file mode 100644
index aa1d9556..00000000
Binary files a/assets/images/real-time-browser-testing/resolution-1.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/resolution.webp b/assets/images/real-time-browser-testing/resolution.webp
deleted file mode 100644
index 89206c01..00000000
Binary files a/assets/images/real-time-browser-testing/resolution.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/save-button.webp b/assets/images/real-time-browser-testing/save-button.webp
deleted file mode 100644
index e599ef35..00000000
Binary files a/assets/images/real-time-browser-testing/save-button.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/screeenshot.webp b/assets/images/real-time-browser-testing/screeenshot.webp
deleted file mode 100644
index 3597c90c..00000000
Binary files a/assets/images/real-time-browser-testing/screeenshot.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/screen-resolution-1.webp b/assets/images/real-time-browser-testing/screen-resolution-1.webp
deleted file mode 100644
index 7a4c41c0..00000000
Binary files a/assets/images/real-time-browser-testing/screen-resolution-1.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/screen-resolution-2.webp b/assets/images/real-time-browser-testing/screen-resolution-2.webp
deleted file mode 100644
index 938b4d52..00000000
Binary files a/assets/images/real-time-browser-testing/screen-resolution-2.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/screen-resolution-3.webp b/assets/images/real-time-browser-testing/screen-resolution-3.webp
deleted file mode 100644
index 4b2a5f08..00000000
Binary files a/assets/images/real-time-browser-testing/screen-resolution-3.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/screen-resolution.webp b/assets/images/real-time-browser-testing/screen-resolution.webp
deleted file mode 100644
index dbc26250..00000000
Binary files a/assets/images/real-time-browser-testing/screen-resolution.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/screenshot-1.webp b/assets/images/real-time-browser-testing/screenshot-1.webp
deleted file mode 100644
index ed75cd91..00000000
Binary files a/assets/images/real-time-browser-testing/screenshot-1.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/screenshot-2.webp b/assets/images/real-time-browser-testing/screenshot-2.webp
deleted file mode 100644
index 29464dba..00000000
Binary files a/assets/images/real-time-browser-testing/screenshot-2.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/screenshot-3.webp b/assets/images/real-time-browser-testing/screenshot-3.webp
deleted file mode 100644
index f0e1befb..00000000
Binary files a/assets/images/real-time-browser-testing/screenshot-3.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/session-end-1.webp b/assets/images/real-time-browser-testing/session-end-1.webp
deleted file mode 100644
index f69c9c11..00000000
Binary files a/assets/images/real-time-browser-testing/session-end-1.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/session-end-2.webp b/assets/images/real-time-browser-testing/session-end-2.webp
deleted file mode 100644
index 18347986..00000000
Binary files a/assets/images/real-time-browser-testing/session-end-2.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/session-end.webp b/assets/images/real-time-browser-testing/session-end.webp
deleted file mode 100644
index e4a6db0c..00000000
Binary files a/assets/images/real-time-browser-testing/session-end.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/start-icon.webp b/assets/images/real-time-browser-testing/start-icon.webp
deleted file mode 100644
index 39b4c9d3..00000000
Binary files a/assets/images/real-time-browser-testing/start-icon.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/time-zone-1.webp b/assets/images/real-time-browser-testing/time-zone-1.webp
deleted file mode 100644
index 1ab88d64..00000000
Binary files a/assets/images/real-time-browser-testing/time-zone-1.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/time-zone.webp b/assets/images/real-time-browser-testing/time-zone.webp
deleted file mode 100644
index 123ead16..00000000
Binary files a/assets/images/real-time-browser-testing/time-zone.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/video-recording-1.webp b/assets/images/real-time-browser-testing/video-recording-1.webp
deleted file mode 100644
index 48f5aa18..00000000
Binary files a/assets/images/real-time-browser-testing/video-recording-1.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/video-recording.webp b/assets/images/real-time-browser-testing/video-recording.webp
deleted file mode 100644
index 47df455c..00000000
Binary files a/assets/images/real-time-browser-testing/video-recording.webp and /dev/null differ
diff --git a/assets/images/real-time-browser-testing/videos-recording-2.webp b/assets/images/real-time-browser-testing/videos-recording-2.webp
deleted file mode 100644
index 2e6e4cae..00000000
Binary files a/assets/images/real-time-browser-testing/videos-recording-2.webp and /dev/null differ
diff --git a/assets/images/real-time-testing/key-features/add-chrome-extension.mp4 b/assets/images/real-time-testing/key-features/add-chrome-extension.mp4
new file mode 100644
index 00000000..ace8d7a7
Binary files /dev/null and b/assets/images/real-time-testing/key-features/add-chrome-extension.mp4 differ
diff --git a/assets/images/real-time-testing/key-features/recents-and-favourites.gif b/assets/images/real-time-testing/key-features/recents-and-favourites.gif
new file mode 100644
index 00000000..9253b98a
Binary files /dev/null and b/assets/images/real-time-testing/key-features/recents-and-favourites.gif differ
diff --git a/assets/images/real-time-testing/key-features/remove-chrome-extension.mp4 b/assets/images/real-time-testing/key-features/remove-chrome-extension.mp4
new file mode 100644
index 00000000..625344ac
Binary files /dev/null and b/assets/images/real-time-testing/key-features/remove-chrome-extension.mp4 differ
diff --git a/assets/images/real-time-testing/key-features/upload-download-app.png b/assets/images/real-time-testing/key-features/upload-download-app.png
new file mode 100644
index 00000000..9e3ccd2c
Binary files /dev/null and b/assets/images/real-time-testing/key-features/upload-download-app.png differ
diff --git a/assets/images/real-time-testing/key-features/upload-download-mobile-browser.png b/assets/images/real-time-testing/key-features/upload-download-mobile-browser.png
new file mode 100644
index 00000000..48dec035
Binary files /dev/null and b/assets/images/real-time-testing/key-features/upload-download-mobile-browser.png differ
diff --git a/assets/images/real-time-testing/key-features/upload-download-web-browser.png b/assets/images/real-time-testing/key-features/upload-download-web-browser.png
new file mode 100644
index 00000000..a2d8fe9c
Binary files /dev/null and b/assets/images/real-time-testing/key-features/upload-download-web-browser.png differ
diff --git a/assets/images/real-time-testing/mobile-app/app-controls.png b/assets/images/real-time-testing/mobile-app/app-controls.png
new file mode 100644
index 00000000..ccf962ea
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/app-controls.png differ
diff --git a/assets/images/real-time-testing/mobile-app/device-control.png b/assets/images/real-time-testing/mobile-app/device-control.png
new file mode 100644
index 00000000..7dde4c19
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/device-control.png differ
diff --git a/assets/images/real-time-testing/mobile-app/end-session.png b/assets/images/real-time-testing/mobile-app/end-session.png
new file mode 100644
index 00000000..afa66179
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/end-session.png differ
diff --git a/assets/images/real-time-testing/mobile-app/gallery.png b/assets/images/real-time-testing/mobile-app/gallery.png
new file mode 100644
index 00000000..d1cc4227
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/gallery.png differ
diff --git a/assets/images/real-time-testing/mobile-app/getting-started-with-mobile-app.gif b/assets/images/real-time-testing/mobile-app/getting-started-with-mobile-app.gif
new file mode 100644
index 00000000..dde34e9d
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/getting-started-with-mobile-app.gif differ
diff --git a/assets/images/real-time-testing/mobile-app/gps-geolocation.png b/assets/images/real-time-testing/mobile-app/gps-geolocation.png
new file mode 100644
index 00000000..f60c0b1c
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/gps-geolocation.png differ
diff --git a/assets/images/real-time-testing/mobile-app/ip-geolocation.png b/assets/images/real-time-testing/mobile-app/ip-geolocation.png
new file mode 100644
index 00000000..492c284d
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/ip-geolocation.png differ
diff --git a/assets/images/real-time-testing/mobile-app/mark-bug.png b/assets/images/real-time-testing/mobile-app/mark-bug.png
new file mode 100644
index 00000000..02b2f2df
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/mark-bug.png differ
diff --git a/assets/images/real-time-testing/mobile-app/network-throttling.png b/assets/images/real-time-testing/mobile-app/network-throttling.png
new file mode 100644
index 00000000..265dffcf
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/network-throttling.png differ
diff --git a/assets/images/real-time-testing/mobile-app/recording.png b/assets/images/real-time-testing/mobile-app/recording.png
new file mode 100644
index 00000000..b26c73d0
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/recording.png differ
diff --git a/assets/images/real-time-testing/mobile-app/screenshot.png b/assets/images/real-time-testing/mobile-app/screenshot.png
new file mode 100644
index 00000000..cb396464
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/screenshot.png differ
diff --git a/assets/images/real-time-testing/mobile-app/settings.png b/assets/images/real-time-testing/mobile-app/settings.png
new file mode 100644
index 00000000..dd331956
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/settings.png differ
diff --git a/assets/images/real-time-testing/mobile-app/switch.png b/assets/images/real-time-testing/mobile-app/switch.png
new file mode 100644
index 00000000..df2d998c
Binary files /dev/null and b/assets/images/real-time-testing/mobile-app/switch.png differ
diff --git a/assets/images/real-time-testing/mobile-browser/device-control.png b/assets/images/real-time-testing/mobile-browser/device-control.png
new file mode 100644
index 00000000..0e964fef
Binary files /dev/null and b/assets/images/real-time-testing/mobile-browser/device-control.png differ
diff --git a/assets/images/real-time-testing/mobile-browser/end-session.png b/assets/images/real-time-testing/mobile-browser/end-session.png
new file mode 100644
index 00000000..4a74fd93
Binary files /dev/null and b/assets/images/real-time-testing/mobile-browser/end-session.png differ
diff --git a/assets/images/real-time-testing/mobile-browser/gallery.png b/assets/images/real-time-testing/mobile-browser/gallery.png
new file mode 100644
index 00000000..60f0b29b
Binary files /dev/null and b/assets/images/real-time-testing/mobile-browser/gallery.png differ
diff --git a/assets/images/real-time-testing/mobile-browser/getting-started-with-mobile-browser.gif b/assets/images/real-time-testing/mobile-browser/getting-started-with-mobile-browser.gif
new file mode 100644
index 00000000..4075c2f9
Binary files /dev/null and b/assets/images/real-time-testing/mobile-browser/getting-started-with-mobile-browser.gif differ
diff --git a/assets/images/real-time-testing/mobile-browser/ip-geolocation.png b/assets/images/real-time-testing/mobile-browser/ip-geolocation.png
new file mode 100644
index 00000000..b6a82969
Binary files /dev/null and b/assets/images/real-time-testing/mobile-browser/ip-geolocation.png differ
diff --git a/assets/images/real-time-testing/mobile-browser/mark-bug.png b/assets/images/real-time-testing/mobile-browser/mark-bug.png
new file mode 100644
index 00000000..952e5e53
Binary files /dev/null and b/assets/images/real-time-testing/mobile-browser/mark-bug.png differ
diff --git a/assets/images/real-time-testing/mobile-browser/network-throttling.png b/assets/images/real-time-testing/mobile-browser/network-throttling.png
new file mode 100644
index 00000000..9bc33779
Binary files /dev/null and b/assets/images/real-time-testing/mobile-browser/network-throttling.png differ
diff --git a/assets/images/real-time-testing/mobile-browser/recordings.png b/assets/images/real-time-testing/mobile-browser/recordings.png
new file mode 100644
index 00000000..3c9dbc74
Binary files /dev/null and b/assets/images/real-time-testing/mobile-browser/recordings.png differ
diff --git a/assets/images/real-time-testing/mobile-browser/screenshot.png b/assets/images/real-time-testing/mobile-browser/screenshot.png
new file mode 100644
index 00000000..98de0ae9
Binary files /dev/null and b/assets/images/real-time-testing/mobile-browser/screenshot.png differ
diff --git a/assets/images/real-time-testing/mobile-browser/settings.png b/assets/images/real-time-testing/mobile-browser/settings.png
new file mode 100644
index 00000000..47551b2e
Binary files /dev/null and b/assets/images/real-time-testing/mobile-browser/settings.png differ
diff --git a/assets/images/real-time-testing/mobile-browser/switch.png b/assets/images/real-time-testing/mobile-browser/switch.png
new file mode 100644
index 00000000..0454ec58
Binary files /dev/null and b/assets/images/real-time-testing/mobile-browser/switch.png differ
diff --git a/assets/images/real-time-testing/web-browser/accessibility.png b/assets/images/real-time-testing/web-browser/accessibility.png
new file mode 100644
index 00000000..297e62ce
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/accessibility.png differ
diff --git a/assets/images/real-time-testing/web-browser/chrome-extension.png b/assets/images/real-time-testing/web-browser/chrome-extension.png
new file mode 100644
index 00000000..c93e5d22
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/chrome-extension.png differ
diff --git a/assets/images/real-time-testing/web-browser/end-session.png b/assets/images/real-time-testing/web-browser/end-session.png
new file mode 100644
index 00000000..6a88d97a
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/end-session.png differ
diff --git a/assets/images/real-time-testing/web-browser/gallery.png b/assets/images/real-time-testing/web-browser/gallery.png
new file mode 100644
index 00000000..785b0f17
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/gallery.png differ
diff --git a/assets/images/real-time-testing/web-browser/getting-started-with-desktop-browser.gif b/assets/images/real-time-testing/web-browser/getting-started-with-desktop-browser.gif
new file mode 100644
index 00000000..7918fa2f
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/getting-started-with-desktop-browser.gif differ
diff --git a/assets/images/real-time-testing/web-browser/ip-geolocation.png b/assets/images/real-time-testing/web-browser/ip-geolocation.png
new file mode 100644
index 00000000..a3e52b90
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/ip-geolocation.png differ
diff --git a/assets/images/real-time-testing/web-browser/mark-bug.png b/assets/images/real-time-testing/web-browser/mark-bug.png
new file mode 100644
index 00000000..2e8d4202
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/mark-bug.png differ
diff --git a/assets/images/real-time-testing/web-browser/on-screen-keyboard.png b/assets/images/real-time-testing/web-browser/on-screen-keyboard.png
new file mode 100644
index 00000000..a8cb4016
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/on-screen-keyboard.png differ
diff --git a/assets/images/real-time-testing/web-browser/recording.png b/assets/images/real-time-testing/web-browser/recording.png
new file mode 100644
index 00000000..744e1534
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/recording.png differ
diff --git a/assets/images/real-time-testing/web-browser/resolution.png b/assets/images/real-time-testing/web-browser/resolution.png
new file mode 100644
index 00000000..e26cef77
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/resolution.png differ
diff --git a/assets/images/real-time-testing/web-browser/scaling.png b/assets/images/real-time-testing/web-browser/scaling.png
new file mode 100644
index 00000000..08f99a83
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/scaling.png differ
diff --git a/assets/images/real-time-testing/web-browser/screenshot.png b/assets/images/real-time-testing/web-browser/screenshot.png
new file mode 100644
index 00000000..95f110dd
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/screenshot.png differ
diff --git a/assets/images/real-time-testing/web-browser/settings.png b/assets/images/real-time-testing/web-browser/settings.png
new file mode 100644
index 00000000..e53c32d9
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/settings.png differ
diff --git a/assets/images/real-time-testing/web-browser/switch.png b/assets/images/real-time-testing/web-browser/switch.png
new file mode 100644
index 00000000..4fd96bae
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/switch.png differ
diff --git a/assets/images/real-time-testing/web-browser/upload.png b/assets/images/real-time-testing/web-browser/upload.png
new file mode 100644
index 00000000..af0fe377
Binary files /dev/null and b/assets/images/real-time-testing/web-browser/upload.png differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/Capture15.webp b/assets/images/rocketchat-integration-with-lambdatest/Capture15.webp
deleted file mode 100644
index e31f6a3e..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/Capture15.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/Create-issue.webp b/assets/images/rocketchat-integration-with-lambdatest/Create-issue.webp
deleted file mode 100644
index 16f70a60..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/Create-issue.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/bug-marked.webp b/assets/images/rocketchat-integration-with-lambdatest/bug-marked.webp
deleted file mode 100644
index 698376d6..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/bug-marked.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/insert-webhook.webp b/assets/images/rocketchat-integration-with-lambdatest/insert-webhook.webp
deleted file mode 100644
index fa687de1..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/insert-webhook.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/integration-tab.webp b/assets/images/rocketchat-integration-with-lambdatest/integration-tab.webp
deleted file mode 100644
index 394f9ff2..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/integration-tab.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/mark-as-bug-1.webp b/assets/images/rocketchat-integration-with-lambdatest/mark-as-bug-1.webp
deleted file mode 100644
index 1e9ccdfe..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/mark-as-bug-1.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/mark-bug-dialog-box.webp b/assets/images/rocketchat-integration-with-lambdatest/mark-bug-dialog-box.webp
deleted file mode 100644
index 1deaaee8..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/mark-bug-dialog-box.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/menu-icon.webp b/assets/images/rocketchat-integration-with-lambdatest/menu-icon.webp
deleted file mode 100644
index 51ac1604..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/menu-icon.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/real-time-testing-1.webp b/assets/images/rocketchat-integration-with-lambdatest/real-time-testing-1.webp
deleted file mode 100644
index d6e5aaa4..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/real-time-testing-1.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/remove-rocketchat.webp b/assets/images/rocketchat-integration-with-lambdatest/remove-rocketchat.webp
deleted file mode 100644
index 5b4d7488..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/remove-rocketchat.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/rocketchat-1.webp b/assets/images/rocketchat-integration-with-lambdatest/rocketchat-1.webp
deleted file mode 100644
index 768520ef..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/rocketchat-1.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/rocketchat-confirmation-popup.webp b/assets/images/rocketchat-integration-with-lambdatest/rocketchat-confirmation-popup.webp
deleted file mode 100644
index c6ff9e24..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/rocketchat-confirmation-popup.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/rocketchat-enabled.webp b/assets/images/rocketchat-integration-with-lambdatest/rocketchat-enabled.webp
deleted file mode 100644
index 00c9d2a1..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/rocketchat-enabled.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/rocketchat-green-tick.webp b/assets/images/rocketchat-integration-with-lambdatest/rocketchat-green-tick.webp
deleted file mode 100644
index 2953ab0f..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/rocketchat-green-tick.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/rocketchat-in-my-integration.webp b/assets/images/rocketchat-integration-with-lambdatest/rocketchat-in-my-integration.webp
deleted file mode 100644
index ea7829b5..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/rocketchat-in-my-integration.webp and /dev/null differ
diff --git a/assets/images/rocketchat-integration-with-lambdatest/rocketchat-webhook.webp b/assets/images/rocketchat-integration-with-lambdatest/rocketchat-webhook.webp
deleted file mode 100644
index b6305fc7..00000000
Binary files a/assets/images/rocketchat-integration-with-lambdatest/rocketchat-webhook.webp and /dev/null differ
diff --git a/assets/images/selenium-automation-capabilities/1.webp b/assets/images/selenium-automation-capabilities/1.webp
deleted file mode 100644
index 1957233f..00000000
Binary files a/assets/images/selenium-automation-capabilities/1.webp and /dev/null differ
diff --git a/assets/images/selenium-automation-capabilities/2.webp b/assets/images/selenium-automation-capabilities/2.webp
deleted file mode 100644
index 1f3987c4..00000000
Binary files a/assets/images/selenium-automation-capabilities/2.webp and /dev/null differ
diff --git a/assets/images/selenium-automation-capabilities/bf6eb74a-fa83-46b8-a647-d3a0d143fd03.webp b/assets/images/selenium-automation-capabilities/bf6eb74a-fa83-46b8-a647-d3a0d143fd03.webp
deleted file mode 100644
index bbfa1967..00000000
Binary files a/assets/images/selenium-automation-capabilities/bf6eb74a-fa83-46b8-a647-d3a0d143fd03.webp and /dev/null differ
diff --git a/assets/images/selenium-automation-capabilities/selenium-test-capabilities-1.webp b/assets/images/selenium-automation-capabilities/selenium-test-capabilities-1.webp
deleted file mode 100644
index 85b5aaa8..00000000
Binary files a/assets/images/selenium-automation-capabilities/selenium-test-capabilities-1.webp and /dev/null differ
diff --git a/assets/images/selenium/guided-walkthrough/commandLogsAndVideos.png b/assets/images/selenium/guided-walkthrough/commandLogsAndVideos.png
new file mode 100644
index 00000000..d99b5c33
Binary files /dev/null and b/assets/images/selenium/guided-walkthrough/commandLogsAndVideos.png differ
diff --git a/assets/images/selenium/guided-walkthrough/homepage-guide.gif b/assets/images/selenium/guided-walkthrough/homepage-guide.gif
new file mode 100644
index 00000000..b913ba9b
Binary files /dev/null and b/assets/images/selenium/guided-walkthrough/homepage-guide.gif differ
diff --git a/assets/images/selenium/guided-walkthrough/test.png b/assets/images/selenium/guided-walkthrough/test.png
new file mode 100644
index 00000000..79a28c3c
Binary files /dev/null and b/assets/images/selenium/guided-walkthrough/test.png differ
diff --git a/assets/images/selenium/guided-walkthrough/testPage.png b/assets/images/selenium/guided-walkthrough/testPage.png
new file mode 100644
index 00000000..73b53f14
Binary files /dev/null and b/assets/images/selenium/guided-walkthrough/testPage.png differ
diff --git a/assets/images/selenium/guided-walkthrough/testSummary.png b/assets/images/selenium/guided-walkthrough/testSummary.png
new file mode 100644
index 00000000..544511e8
Binary files /dev/null and b/assets/images/selenium/guided-walkthrough/testSummary.png differ
diff --git a/assets/images/selenium/guided-walkthrough/testVideo.png b/assets/images/selenium/guided-walkthrough/testVideo.png
new file mode 100644
index 00000000..fb815910
Binary files /dev/null and b/assets/images/selenium/guided-walkthrough/testVideo.png differ
diff --git a/assets/images/selenium/java1.png b/assets/images/selenium/java1.png
deleted file mode 100644
index 4458ea1e..00000000
Binary files a/assets/images/selenium/java1.png and /dev/null differ
diff --git a/assets/images/selenium/java2.png b/assets/images/selenium/java2.png
deleted file mode 100644
index 0edd87c1..00000000
Binary files a/assets/images/selenium/java2.png and /dev/null differ
diff --git a/assets/images/selenium/language-frameworks/java/1.png b/assets/images/selenium/language-frameworks/java/1.png
new file mode 100644
index 00000000..09d209f8
Binary files /dev/null and b/assets/images/selenium/language-frameworks/java/1.png differ
diff --git a/assets/images/selenium/running-first-test/run-first-test.png b/assets/images/selenium/running-first-test/run-first-test.png
new file mode 100644
index 00000000..e341eaf6
Binary files /dev/null and b/assets/images/selenium/running-first-test/run-first-test.png differ
diff --git a/assets/images/smart-visual-testing/annotation-tool/1.png b/assets/images/smart-visual-testing/annotation-tool/1.png
new file mode 100644
index 00000000..94fccb90
Binary files /dev/null and b/assets/images/smart-visual-testing/annotation-tool/1.png differ
diff --git a/assets/images/smart-visual-testing/annotation-tool/2.png b/assets/images/smart-visual-testing/annotation-tool/2.png
new file mode 100644
index 00000000..a868bb36
Binary files /dev/null and b/assets/images/smart-visual-testing/annotation-tool/2.png differ
diff --git a/assets/images/smart-visual-testing/annotation-tool/3.png b/assets/images/smart-visual-testing/annotation-tool/3.png
new file mode 100644
index 00000000..e944ee3d
Binary files /dev/null and b/assets/images/smart-visual-testing/annotation-tool/3.png differ
diff --git a/assets/images/smart-visual-testing/annotation-tool/4.png b/assets/images/smart-visual-testing/annotation-tool/4.png
new file mode 100644
index 00000000..c7bc82a9
Binary files /dev/null and b/assets/images/smart-visual-testing/annotation-tool/4.png differ
diff --git a/assets/images/smart-visual-testing/annotation-tool/5.png b/assets/images/smart-visual-testing/annotation-tool/5.png
new file mode 100644
index 00000000..dd1369ef
Binary files /dev/null and b/assets/images/smart-visual-testing/annotation-tool/5.png differ
diff --git a/assets/images/smart-visual-testing/annotation-tool/6.png b/assets/images/smart-visual-testing/annotation-tool/6.png
new file mode 100644
index 00000000..21155a7b
Binary files /dev/null and b/assets/images/smart-visual-testing/annotation-tool/6.png differ
diff --git a/assets/images/smart-visual-testing/ci-cd-integration/bitbucket/1.png b/assets/images/smart-visual-testing/ci-cd-integration/bitbucket/1.png
new file mode 100644
index 00000000..44f33be4
Binary files /dev/null and b/assets/images/smart-visual-testing/ci-cd-integration/bitbucket/1.png differ
diff --git a/assets/images/smart-visual-testing/ci-cd-integration/bitbucket/2.png b/assets/images/smart-visual-testing/ci-cd-integration/bitbucket/2.png
new file mode 100644
index 00000000..f452c73b
Binary files /dev/null and b/assets/images/smart-visual-testing/ci-cd-integration/bitbucket/2.png differ
diff --git a/assets/images/smart-visual-testing/ci-cd-integration/github-actions/github-actions.png b/assets/images/smart-visual-testing/ci-cd-integration/github-actions/github-actions.png
new file mode 100644
index 00000000..83115b21
Binary files /dev/null and b/assets/images/smart-visual-testing/ci-cd-integration/github-actions/github-actions.png differ
diff --git a/assets/images/smart-visual-testing/ci-cd-integration/gitlab/1.png b/assets/images/smart-visual-testing/ci-cd-integration/gitlab/1.png
new file mode 100644
index 00000000..5a35930d
Binary files /dev/null and b/assets/images/smart-visual-testing/ci-cd-integration/gitlab/1.png differ
diff --git a/assets/images/smart-visual-testing/ci-cd-integration/gitlab/2.png b/assets/images/smart-visual-testing/ci-cd-integration/gitlab/2.png
new file mode 100644
index 00000000..445d3017
Binary files /dev/null and b/assets/images/smart-visual-testing/ci-cd-integration/gitlab/2.png differ
diff --git a/assets/images/smart-visual-testing/ci-cd-integration/gitlab/3.png b/assets/images/smart-visual-testing/ci-cd-integration/gitlab/3.png
new file mode 100644
index 00000000..2865ae34
Binary files /dev/null and b/assets/images/smart-visual-testing/ci-cd-integration/gitlab/3.png differ
diff --git a/assets/images/smart-visual-testing/ci-cd-integration/semaphore/1.gif b/assets/images/smart-visual-testing/ci-cd-integration/semaphore/1.gif
new file mode 100644
index 00000000..43e5fbcf
Binary files /dev/null and b/assets/images/smart-visual-testing/ci-cd-integration/semaphore/1.gif differ
diff --git a/assets/images/smart-visual-testing/cropped_ss.jpg b/assets/images/smart-visual-testing/cropped_ss.jpg
new file mode 100644
index 00000000..c4b9a2c7
Binary files /dev/null and b/assets/images/smart-visual-testing/cropped_ss.jpg differ
diff --git a/assets/images/smart-visual-testing/guided-walkthrough/1.png b/assets/images/smart-visual-testing/guided-walkthrough/1.png
new file mode 100644
index 00000000..876b8921
Binary files /dev/null and b/assets/images/smart-visual-testing/guided-walkthrough/1.png differ
diff --git a/assets/images/smart-visual-testing/guided-walkthrough/2.png b/assets/images/smart-visual-testing/guided-walkthrough/2.png
new file mode 100644
index 00000000..25ca92cd
Binary files /dev/null and b/assets/images/smart-visual-testing/guided-walkthrough/2.png differ
diff --git a/assets/images/smart-visual-testing/missing-ss/Tooltip-missing.webp b/assets/images/smart-visual-testing/missing-ss/Tooltip-missing.webp
new file mode 100644
index 00000000..bd5387a6
Binary files /dev/null and b/assets/images/smart-visual-testing/missing-ss/Tooltip-missing.webp differ
diff --git a/assets/images/smart-visual-testing/missing-ss/Validation.webp b/assets/images/smart-visual-testing/missing-ss/Validation.webp
new file mode 100644
index 00000000..14f908b4
Binary files /dev/null and b/assets/images/smart-visual-testing/missing-ss/Validation.webp differ
diff --git a/assets/images/smart-visual-testing/project-token-primer.webp b/assets/images/smart-visual-testing/project-token-primer.webp
new file mode 100644
index 00000000..39ed8bbf
Binary files /dev/null and b/assets/images/smart-visual-testing/project-token-primer.webp differ
diff --git a/assets/images/smart-visual-testing/running-first-test/1.png b/assets/images/smart-visual-testing/running-first-test/1.png
new file mode 100644
index 00000000..6e41597e
Binary files /dev/null and b/assets/images/smart-visual-testing/running-first-test/1.png differ
diff --git a/assets/images/smart-visual-testing/smart-ignore/Dropdown-4.png b/assets/images/smart-visual-testing/smart-ignore/Dropdown-4.png
new file mode 100644
index 00000000..36c40e93
Binary files /dev/null and b/assets/images/smart-visual-testing/smart-ignore/Dropdown-4.png differ
diff --git a/assets/images/smart-visual-testing/smart-ignore/Toggle.png b/assets/images/smart-visual-testing/smart-ignore/Toggle.png
new file mode 100644
index 00000000..424c7caf
Binary files /dev/null and b/assets/images/smart-visual-testing/smart-ignore/Toggle.png differ
diff --git a/assets/images/smart-visual-testing/smart-ignore/p2p.webp b/assets/images/smart-visual-testing/smart-ignore/p2p.webp
new file mode 100644
index 00000000..86fb0c70
Binary files /dev/null and b/assets/images/smart-visual-testing/smart-ignore/p2p.webp differ
diff --git a/assets/images/smart-visual-testing/smart-ignore/smartignore.webp b/assets/images/smart-visual-testing/smart-ignore/smartignore.webp
new file mode 100644
index 00000000..6038e91c
Binary files /dev/null and b/assets/images/smart-visual-testing/smart-ignore/smartignore.webp differ
diff --git a/assets/images/smart-visual-testing/smartui-sdk-results-primer.webp b/assets/images/smart-visual-testing/smartui-sdk-results-primer.webp
new file mode 100644
index 00000000..8bd12aae
Binary files /dev/null and b/assets/images/smart-visual-testing/smartui-sdk-results-primer.webp differ
diff --git a/assets/images/smart-visual-testing/smartui-sdk-results.webp b/assets/images/smart-visual-testing/smartui-sdk-results.webp
new file mode 100644
index 00000000..19d4cada
Binary files /dev/null and b/assets/images/smart-visual-testing/smartui-sdk-results.webp differ
diff --git a/assets/images/spirateam-integration/1.png b/assets/images/spirateam-integration/1.png
new file mode 100644
index 00000000..bda25072
Binary files /dev/null and b/assets/images/spirateam-integration/1.png differ
diff --git a/assets/images/spirateam-integration/2.png b/assets/images/spirateam-integration/2.png
new file mode 100644
index 00000000..c167a9d6
Binary files /dev/null and b/assets/images/spirateam-integration/2.png differ
diff --git a/assets/images/spirateam-integration/3.png b/assets/images/spirateam-integration/3.png
new file mode 100644
index 00000000..b5232216
Binary files /dev/null and b/assets/images/spirateam-integration/3.png differ
diff --git a/assets/images/spirateam-integration/4.png b/assets/images/spirateam-integration/4.png
new file mode 100644
index 00000000..536beedd
Binary files /dev/null and b/assets/images/spirateam-integration/4.png differ
diff --git a/assets/images/spirateam-integration/5.png b/assets/images/spirateam-integration/5.png
new file mode 100644
index 00000000..d2ff573d
Binary files /dev/null and b/assets/images/spirateam-integration/5.png differ
diff --git a/assets/images/spirateam-integration/6.png b/assets/images/spirateam-integration/6.png
new file mode 100644
index 00000000..f32ee491
Binary files /dev/null and b/assets/images/spirateam-integration/6.png differ
diff --git a/assets/images/sso/img.png b/assets/images/sso/img.png
new file mode 100644
index 00000000..7f8a7bf9
Binary files /dev/null and b/assets/images/sso/img.png differ
diff --git a/assets/images/sso/img_1.png b/assets/images/sso/img_1.png
new file mode 100644
index 00000000..b500a019
Binary files /dev/null and b/assets/images/sso/img_1.png differ
diff --git a/assets/images/sso/img_10.png b/assets/images/sso/img_10.png
new file mode 100644
index 00000000..1c2e8879
Binary files /dev/null and b/assets/images/sso/img_10.png differ
diff --git a/assets/images/sso/img_11.png b/assets/images/sso/img_11.png
new file mode 100644
index 00000000..fca85db7
Binary files /dev/null and b/assets/images/sso/img_11.png differ
diff --git a/assets/images/sso/img_12.png b/assets/images/sso/img_12.png
new file mode 100644
index 00000000..ae30c4cf
Binary files /dev/null and b/assets/images/sso/img_12.png differ
diff --git a/assets/images/sso/img_13.png b/assets/images/sso/img_13.png
new file mode 100644
index 00000000..aa651ab9
Binary files /dev/null and b/assets/images/sso/img_13.png differ
diff --git a/assets/images/sso/img_14.png b/assets/images/sso/img_14.png
new file mode 100644
index 00000000..5d310c81
Binary files /dev/null and b/assets/images/sso/img_14.png differ
diff --git a/assets/images/sso/img_15.png b/assets/images/sso/img_15.png
new file mode 100644
index 00000000..fa2485e6
Binary files /dev/null and b/assets/images/sso/img_15.png differ
diff --git a/assets/images/sso/img_16.png b/assets/images/sso/img_16.png
new file mode 100644
index 00000000..1bcf3990
Binary files /dev/null and b/assets/images/sso/img_16.png differ
diff --git a/assets/images/sso/img_17.png b/assets/images/sso/img_17.png
new file mode 100644
index 00000000..43c7c914
Binary files /dev/null and b/assets/images/sso/img_17.png differ
diff --git a/assets/images/sso/img_18.png b/assets/images/sso/img_18.png
new file mode 100644
index 00000000..3bdc711c
Binary files /dev/null and b/assets/images/sso/img_18.png differ
diff --git a/assets/images/sso/img_19.png b/assets/images/sso/img_19.png
new file mode 100644
index 00000000..79e019e6
Binary files /dev/null and b/assets/images/sso/img_19.png differ
diff --git a/assets/images/sso/img_2.png b/assets/images/sso/img_2.png
new file mode 100644
index 00000000..74d815f7
Binary files /dev/null and b/assets/images/sso/img_2.png differ
diff --git a/assets/images/sso/img_3.png b/assets/images/sso/img_3.png
new file mode 100644
index 00000000..4c97977d
Binary files /dev/null and b/assets/images/sso/img_3.png differ
diff --git a/assets/images/sso/img_4.png b/assets/images/sso/img_4.png
new file mode 100644
index 00000000..9b25467d
Binary files /dev/null and b/assets/images/sso/img_4.png differ
diff --git a/assets/images/sso/img_5.png b/assets/images/sso/img_5.png
new file mode 100644
index 00000000..4e04f3ef
Binary files /dev/null and b/assets/images/sso/img_5.png differ
diff --git a/assets/images/sso/img_6.png b/assets/images/sso/img_6.png
new file mode 100644
index 00000000..79bcb987
Binary files /dev/null and b/assets/images/sso/img_6.png differ
diff --git a/assets/images/sso/img_7.png b/assets/images/sso/img_7.png
new file mode 100644
index 00000000..79bcb987
Binary files /dev/null and b/assets/images/sso/img_7.png differ
diff --git a/assets/images/sso/img_8.png b/assets/images/sso/img_8.png
new file mode 100644
index 00000000..f3d4ddd9
Binary files /dev/null and b/assets/images/sso/img_8.png differ
diff --git a/assets/images/sso/img_9.png b/assets/images/sso/img_9.png
new file mode 100644
index 00000000..eb574613
Binary files /dev/null and b/assets/images/sso/img_9.png differ
diff --git a/assets/images/sso/ping-identity/1.png b/assets/images/sso/ping-identity/1.png
new file mode 100644
index 00000000..66e4ca05
Binary files /dev/null and b/assets/images/sso/ping-identity/1.png differ
diff --git a/assets/images/sso/ping-identity/2.png b/assets/images/sso/ping-identity/2.png
new file mode 100644
index 00000000..b4cf4196
Binary files /dev/null and b/assets/images/sso/ping-identity/2.png differ
diff --git a/assets/images/sso/ping-identity/3.png b/assets/images/sso/ping-identity/3.png
new file mode 100644
index 00000000..283442be
Binary files /dev/null and b/assets/images/sso/ping-identity/3.png differ
diff --git a/assets/images/sso/ping-identity/4.png b/assets/images/sso/ping-identity/4.png
new file mode 100644
index 00000000..0c3c4ac3
Binary files /dev/null and b/assets/images/sso/ping-identity/4.png differ
diff --git a/assets/images/sso/ping-identity/5.png b/assets/images/sso/ping-identity/5.png
new file mode 100644
index 00000000..0cdcf19b
Binary files /dev/null and b/assets/images/sso/ping-identity/5.png differ
diff --git a/assets/images/sso/ping-identity/6.png b/assets/images/sso/ping-identity/6.png
new file mode 100644
index 00000000..abad59c9
Binary files /dev/null and b/assets/images/sso/ping-identity/6.png differ
diff --git a/assets/images/support/Doc.png b/assets/images/support/Doc.png
deleted file mode 100644
index 6d9236c7..00000000
Binary files a/assets/images/support/Doc.png and /dev/null differ
diff --git a/assets/images/support/Integration-dark-icon.svg b/assets/images/support/Integration-dark-icon.svg
new file mode 100644
index 00000000..c4404a00
--- /dev/null
+++ b/assets/images/support/Integration-dark-icon.svg
@@ -0,0 +1,10 @@
+
diff --git a/assets/images/support/Integration-light-icon.svg b/assets/images/support/Integration-light-icon.svg
new file mode 100644
index 00000000..3b6a3641
--- /dev/null
+++ b/assets/images/support/Integration-light-icon.svg
@@ -0,0 +1,10 @@
+
diff --git a/assets/images/support/Realtime-dark-icon.svg b/assets/images/support/Realtime-dark-icon.svg
new file mode 100644
index 00000000..6afe2e5a
--- /dev/null
+++ b/assets/images/support/Realtime-dark-icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/assets/images/support/Realtime-light-icon.svg b/assets/images/support/Realtime-light-icon.svg
new file mode 100644
index 00000000..bf126ed5
--- /dev/null
+++ b/assets/images/support/Realtime-light-icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/assets/images/support/accessibility-dark.svg b/assets/images/support/accessibility-dark.svg
new file mode 100644
index 00000000..b2b9840e
--- /dev/null
+++ b/assets/images/support/accessibility-dark.svg
@@ -0,0 +1,13 @@
+
diff --git a/assets/images/support/accessibility-light.svg b/assets/images/support/accessibility-light.svg
new file mode 100644
index 00000000..53ca84a6
--- /dev/null
+++ b/assets/images/support/accessibility-light.svg
@@ -0,0 +1,13 @@
+
diff --git a/assets/images/support/analytics-dark-icon.svg b/assets/images/support/analytics-dark-icon.svg
new file mode 100644
index 00000000..f8e2227d
--- /dev/null
+++ b/assets/images/support/analytics-dark-icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/assets/images/support/analytics-light-icon.svg b/assets/images/support/analytics-light-icon.svg
new file mode 100644
index 00000000..b8625fb5
--- /dev/null
+++ b/assets/images/support/analytics-light-icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/assets/images/support/appAutomation-dark-icon.svg b/assets/images/support/appAutomation-dark-icon.svg
new file mode 100644
index 00000000..c9ef9207
--- /dev/null
+++ b/assets/images/support/appAutomation-dark-icon.svg
@@ -0,0 +1,5 @@
+
diff --git a/assets/images/support/appAutomation-light-icon.svg b/assets/images/support/appAutomation-light-icon.svg
new file mode 100644
index 00000000..603da58c
--- /dev/null
+++ b/assets/images/support/appAutomation-light-icon.svg
@@ -0,0 +1,5 @@
+
diff --git a/assets/images/support/automation-dark-icon.svg b/assets/images/support/automation-dark-icon.svg
new file mode 100644
index 00000000..eef72597
--- /dev/null
+++ b/assets/images/support/automation-dark-icon.svg
@@ -0,0 +1,5 @@
+
diff --git a/assets/images/support/automation-light-icon.svg b/assets/images/support/automation-light-icon.svg
new file mode 100644
index 00000000..ebb7915a
--- /dev/null
+++ b/assets/images/support/automation-light-icon.svg
@@ -0,0 +1,5 @@
+
diff --git a/assets/images/support/home_dark.png b/assets/images/support/home_dark.png
new file mode 100644
index 00000000..dfeea82e
Binary files /dev/null and b/assets/images/support/home_dark.png differ
diff --git a/assets/images/support/home_light.png b/assets/images/support/home_light.png
new file mode 100644
index 00000000..3823afbb
Binary files /dev/null and b/assets/images/support/home_light.png differ
diff --git a/assets/images/support/hyp-dark-icon.svg b/assets/images/support/hyp-dark-icon.svg
new file mode 100644
index 00000000..54523a98
--- /dev/null
+++ b/assets/images/support/hyp-dark-icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/assets/images/support/hyp-light-icon.svg b/assets/images/support/hyp-light-icon.svg
new file mode 100644
index 00000000..bfa6f2e6
--- /dev/null
+++ b/assets/images/support/hyp-light-icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/assets/images/support/other-dark-icon.svg b/assets/images/support/other-dark-icon.svg
new file mode 100644
index 00000000..86b71884
--- /dev/null
+++ b/assets/images/support/other-dark-icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/assets/images/support/other-light-icon.svg b/assets/images/support/other-light-icon.svg
new file mode 100644
index 00000000..85cbc5d7
--- /dev/null
+++ b/assets/images/support/other-light-icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/assets/images/support/realDevice-dark.svg b/assets/images/support/realDevice-dark.svg
new file mode 100644
index 00000000..9320b9b9
--- /dev/null
+++ b/assets/images/support/realDevice-dark.svg
@@ -0,0 +1,10 @@
+
diff --git a/assets/images/support/realDevice-light.svg b/assets/images/support/realDevice-light.svg
new file mode 100644
index 00000000..598cf732
--- /dev/null
+++ b/assets/images/support/realDevice-light.svg
@@ -0,0 +1,10 @@
+
diff --git a/assets/images/support/settings-dark-icon.svg b/assets/images/support/settings-dark-icon.svg
new file mode 100644
index 00000000..31492378
--- /dev/null
+++ b/assets/images/support/settings-dark-icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/assets/images/support/settings-light-icon.svg b/assets/images/support/settings-light-icon.svg
new file mode 100644
index 00000000..ebb17a9b
--- /dev/null
+++ b/assets/images/support/settings-light-icon.svg
@@ -0,0 +1,4 @@
+
diff --git a/assets/images/support/test-manager-icon.svg b/assets/images/support/test-manager-icon.svg
new file mode 100644
index 00000000..1cf01ac2
--- /dev/null
+++ b/assets/images/support/test-manager-icon.svg
@@ -0,0 +1,10 @@
+
diff --git a/assets/images/support/testManager-dark.svg b/assets/images/support/testManager-dark.svg
new file mode 100644
index 00000000..276805bf
--- /dev/null
+++ b/assets/images/support/testManager-dark.svg
@@ -0,0 +1,10 @@
+
diff --git a/assets/images/support/testManager-light.svg b/assets/images/support/testManager-light.svg
new file mode 100644
index 00000000..8b7277fe
--- /dev/null
+++ b/assets/images/support/testManager-light.svg
@@ -0,0 +1,10 @@
+
diff --git a/assets/images/support/testing-locally-dark-icon.svg b/assets/images/support/testing-locally-dark-icon.svg
new file mode 100644
index 00000000..7a75bb30
--- /dev/null
+++ b/assets/images/support/testing-locally-dark-icon.svg
@@ -0,0 +1,8 @@
+
diff --git a/assets/images/support/testing-locally-light-icon.svg b/assets/images/support/testing-locally-light-icon.svg
new file mode 100644
index 00000000..7ace09cd
--- /dev/null
+++ b/assets/images/support/testing-locally-light-icon.svg
@@ -0,0 +1,8 @@
+
diff --git a/assets/images/support/visual-dark-icon.svg b/assets/images/support/visual-dark-icon.svg
new file mode 100644
index 00000000..4a207e34
--- /dev/null
+++ b/assets/images/support/visual-dark-icon.svg
@@ -0,0 +1,6 @@
+
diff --git a/assets/images/support/visual-light-icon.svg b/assets/images/support/visual-light-icon.svg
new file mode 100644
index 00000000..81cfbe9f
--- /dev/null
+++ b/assets/images/support/visual-light-icon.svg
@@ -0,0 +1,6 @@
+
diff --git a/assets/images/teamwork-integration/image-3.webp b/assets/images/teamwork-integration/image-3.webp
deleted file mode 100644
index 850c7e0e..00000000
Binary files a/assets/images/teamwork-integration/image-3.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/jira-1-1-1.webp b/assets/images/teamwork-integration/jira-1-1-1.webp
deleted file mode 100644
index 740c4750..00000000
Binary files a/assets/images/teamwork-integration/jira-1-1-1.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/jira-5-8.webp b/assets/images/teamwork-integration/jira-5-8.webp
deleted file mode 100644
index 472e5217..00000000
Binary files a/assets/images/teamwork-integration/jira-5-8.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/monday-10.webp b/assets/images/teamwork-integration/monday-10.webp
deleted file mode 100644
index f63d7e96..00000000
Binary files a/assets/images/teamwork-integration/monday-10.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/monday-11.webp b/assets/images/teamwork-integration/monday-11.webp
deleted file mode 100644
index 581f5567..00000000
Binary files a/assets/images/teamwork-integration/monday-11.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/teamwork-1-2.webp b/assets/images/teamwork-integration/teamwork-1-2.webp
deleted file mode 100644
index 06d89ba1..00000000
Binary files a/assets/images/teamwork-integration/teamwork-1-2.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/teamwork-10-1.webp b/assets/images/teamwork-integration/teamwork-10-1.webp
deleted file mode 100644
index 33fefb7d..00000000
Binary files a/assets/images/teamwork-integration/teamwork-10-1.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/teamwork-11-3.webp b/assets/images/teamwork-integration/teamwork-11-3.webp
deleted file mode 100644
index 742bb2d2..00000000
Binary files a/assets/images/teamwork-integration/teamwork-11-3.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/teamwork-12-1.webp b/assets/images/teamwork-integration/teamwork-12-1.webp
deleted file mode 100644
index 6c4c61f5..00000000
Binary files a/assets/images/teamwork-integration/teamwork-12-1.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/teamwork-2-2.webp b/assets/images/teamwork-integration/teamwork-2-2.webp
deleted file mode 100644
index 057ec865..00000000
Binary files a/assets/images/teamwork-integration/teamwork-2-2.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/teamwork-4-1.webp b/assets/images/teamwork-integration/teamwork-4-1.webp
deleted file mode 100644
index c7d83d0a..00000000
Binary files a/assets/images/teamwork-integration/teamwork-4-1.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/teamwork-5-1.webp b/assets/images/teamwork-integration/teamwork-5-1.webp
deleted file mode 100644
index dffe0057..00000000
Binary files a/assets/images/teamwork-integration/teamwork-5-1.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/teamwork-6-1.webp b/assets/images/teamwork-integration/teamwork-6-1.webp
deleted file mode 100644
index ef245981..00000000
Binary files a/assets/images/teamwork-integration/teamwork-6-1.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/teamwork-7-3.webp b/assets/images/teamwork-integration/teamwork-7-3.webp
deleted file mode 100644
index 29cd2e25..00000000
Binary files a/assets/images/teamwork-integration/teamwork-7-3.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/teamwork-8-3.webp b/assets/images/teamwork-integration/teamwork-8-3.webp
deleted file mode 100644
index cce2b469..00000000
Binary files a/assets/images/teamwork-integration/teamwork-8-3.webp and /dev/null differ
diff --git a/assets/images/teamwork-integration/teamwork-9-3.webp b/assets/images/teamwork-integration/teamwork-9-3.webp
deleted file mode 100644
index 9cde894f..00000000
Binary files a/assets/images/teamwork-integration/teamwork-9-3.webp and /dev/null differ
diff --git a/assets/images/test-run/1.png b/assets/images/test-run/1.png
new file mode 100644
index 00000000..320754e1
Binary files /dev/null and b/assets/images/test-run/1.png differ
diff --git a/assets/images/test-run/10.png b/assets/images/test-run/10.png
new file mode 100644
index 00000000..8ec46c50
Binary files /dev/null and b/assets/images/test-run/10.png differ
diff --git a/assets/images/test-run/11.png b/assets/images/test-run/11.png
new file mode 100644
index 00000000..c124b80f
Binary files /dev/null and b/assets/images/test-run/11.png differ
diff --git a/assets/images/test-run/12.png b/assets/images/test-run/12.png
new file mode 100644
index 00000000..64e861d0
Binary files /dev/null and b/assets/images/test-run/12.png differ
diff --git a/assets/images/test-run/13.png b/assets/images/test-run/13.png
new file mode 100644
index 00000000..5d7ce25f
Binary files /dev/null and b/assets/images/test-run/13.png differ
diff --git a/assets/images/test-run/14.png b/assets/images/test-run/14.png
new file mode 100644
index 00000000..31016a38
Binary files /dev/null and b/assets/images/test-run/14.png differ
diff --git a/assets/images/test-run/2.png b/assets/images/test-run/2.png
new file mode 100644
index 00000000..4bc9d1fb
Binary files /dev/null and b/assets/images/test-run/2.png differ
diff --git a/assets/images/test-run/3.png b/assets/images/test-run/3.png
new file mode 100644
index 00000000..965f1cbd
Binary files /dev/null and b/assets/images/test-run/3.png differ
diff --git a/assets/images/test-run/4.png b/assets/images/test-run/4.png
new file mode 100644
index 00000000..3539d6ea
Binary files /dev/null and b/assets/images/test-run/4.png differ
diff --git a/assets/images/test-run/5.png b/assets/images/test-run/5.png
new file mode 100644
index 00000000..7148c7d7
Binary files /dev/null and b/assets/images/test-run/5.png differ
diff --git a/assets/images/test-run/6.png b/assets/images/test-run/6.png
new file mode 100644
index 00000000..b9e74193
Binary files /dev/null and b/assets/images/test-run/6.png differ
diff --git a/assets/images/test-run/7.png b/assets/images/test-run/7.png
new file mode 100644
index 00000000..7a01e372
Binary files /dev/null and b/assets/images/test-run/7.png differ
diff --git a/assets/images/test-run/8.png b/assets/images/test-run/8.png
new file mode 100644
index 00000000..b3a324a4
Binary files /dev/null and b/assets/images/test-run/8.png differ
diff --git a/assets/images/test-run/9.png b/assets/images/test-run/9.png
new file mode 100644
index 00000000..a36c2b23
Binary files /dev/null and b/assets/images/test-run/9.png differ
diff --git a/assets/images/test-run/output.mp4 b/assets/images/test-run/output.mp4
new file mode 100644
index 00000000..8f68d8dd
Binary files /dev/null and b/assets/images/test-run/output.mp4 differ
diff --git a/assets/images/testcomplete-integration/10.png b/assets/images/testcomplete-integration/10.png
new file mode 100644
index 00000000..9458b785
Binary files /dev/null and b/assets/images/testcomplete-integration/10.png differ
diff --git a/assets/images/testcomplete-integration/11.png b/assets/images/testcomplete-integration/11.png
index b3789140..f5115805 100644
Binary files a/assets/images/testcomplete-integration/11.png and b/assets/images/testcomplete-integration/11.png differ
diff --git a/assets/images/testcomplete-integration/12.png b/assets/images/testcomplete-integration/12.png
deleted file mode 100644
index f28018dc..00000000
Binary files a/assets/images/testcomplete-integration/12.png and /dev/null differ
diff --git a/assets/images/testcomplete-integration/13.png b/assets/images/testcomplete-integration/13.png
deleted file mode 100644
index 4cb746d0..00000000
Binary files a/assets/images/testcomplete-integration/13.png and /dev/null differ
diff --git a/assets/images/testcomplete-integration/14.png b/assets/images/testcomplete-integration/14.png
deleted file mode 100644
index 3ee3af63..00000000
Binary files a/assets/images/testcomplete-integration/14.png and /dev/null differ
diff --git a/assets/images/testcomplete-integration/15.png b/assets/images/testcomplete-integration/15.png
deleted file mode 100644
index 676dad7e..00000000
Binary files a/assets/images/testcomplete-integration/15.png and /dev/null differ
diff --git a/assets/images/testcomplete-integration/16.png b/assets/images/testcomplete-integration/16.png
deleted file mode 100644
index bf71ed90..00000000
Binary files a/assets/images/testcomplete-integration/16.png and /dev/null differ
diff --git a/assets/images/testcomplete-integration/7.png b/assets/images/testcomplete-integration/7.png
index 68334559..9cc0a394 100644
Binary files a/assets/images/testcomplete-integration/7.png and b/assets/images/testcomplete-integration/7.png differ
diff --git a/assets/images/testcomplete-integration/8.png b/assets/images/testcomplete-integration/8.png
new file mode 100644
index 00000000..df7a7afc
Binary files /dev/null and b/assets/images/testcomplete-integration/8.png differ
diff --git a/assets/images/testcomplete-integration/9.png b/assets/images/testcomplete-integration/9.png
new file mode 100644
index 00000000..a8addcc9
Binary files /dev/null and b/assets/images/testcomplete-integration/9.png differ
diff --git a/assets/images/testcomplete-integration/apps-caps.png b/assets/images/testcomplete-integration/apps-caps.png
deleted file mode 100644
index c87d4ada..00000000
Binary files a/assets/images/testcomplete-integration/apps-caps.png and /dev/null differ
diff --git a/assets/images/testcomplete-integration/web-caps.png b/assets/images/testcomplete-integration/web-caps.png
deleted file mode 100644
index fc9bcb6e..00000000
Binary files a/assets/images/testcomplete-integration/web-caps.png and /dev/null differ
diff --git a/assets/images/tr-testim.png b/assets/images/tr-testim.png
new file mode 100644
index 00000000..dcd8f7fb
Binary files /dev/null and b/assets/images/tr-testim.png differ
diff --git a/assets/images/tunnel/tunnel.png b/assets/images/tunnel/tunnel.png
new file mode 100644
index 00000000..22802025
Binary files /dev/null and b/assets/images/tunnel/tunnel.png differ
diff --git a/assets/images/uipath-integration/uipath-eight.webp b/assets/images/uipath-integration/uipath-eight.webp
new file mode 100644
index 00000000..0382c9cf
Binary files /dev/null and b/assets/images/uipath-integration/uipath-eight.webp differ
diff --git a/assets/images/uipath-integration/uipath-eleven.webp b/assets/images/uipath-integration/uipath-eleven.webp
new file mode 100644
index 00000000..175488ca
Binary files /dev/null and b/assets/images/uipath-integration/uipath-eleven.webp differ
diff --git a/assets/images/uipath-integration/uipath-five.webp b/assets/images/uipath-integration/uipath-five.webp
new file mode 100644
index 00000000..ea197f70
Binary files /dev/null and b/assets/images/uipath-integration/uipath-five.webp differ
diff --git a/assets/images/uipath-integration/uipath-four.webp b/assets/images/uipath-integration/uipath-four.webp
new file mode 100644
index 00000000..0ddf8ebd
Binary files /dev/null and b/assets/images/uipath-integration/uipath-four.webp differ
diff --git a/assets/images/uipath-integration/uipath-nine.webp b/assets/images/uipath-integration/uipath-nine.webp
new file mode 100644
index 00000000..8a203763
Binary files /dev/null and b/assets/images/uipath-integration/uipath-nine.webp differ
diff --git a/assets/images/uipath-integration/uipath-one.webp b/assets/images/uipath-integration/uipath-one.webp
new file mode 100644
index 00000000..fafff705
Binary files /dev/null and b/assets/images/uipath-integration/uipath-one.webp differ
diff --git a/assets/images/uipath-integration/uipath-seven.webp b/assets/images/uipath-integration/uipath-seven.webp
new file mode 100644
index 00000000..f6b16285
Binary files /dev/null and b/assets/images/uipath-integration/uipath-seven.webp differ
diff --git a/assets/images/uipath-integration/uipath-six.webp b/assets/images/uipath-integration/uipath-six.webp
new file mode 100644
index 00000000..b0cfa82d
Binary files /dev/null and b/assets/images/uipath-integration/uipath-six.webp differ
diff --git a/assets/images/uipath-integration/uipath-ten.webp b/assets/images/uipath-integration/uipath-ten.webp
new file mode 100644
index 00000000..d7316706
Binary files /dev/null and b/assets/images/uipath-integration/uipath-ten.webp differ
diff --git a/assets/images/uipath-integration/uipath-three.webp b/assets/images/uipath-integration/uipath-three.webp
new file mode 100644
index 00000000..c9618368
Binary files /dev/null and b/assets/images/uipath-integration/uipath-three.webp differ
diff --git a/assets/images/uipath-integration/uipath-two.webp b/assets/images/uipath-integration/uipath-two.webp
new file mode 100644
index 00000000..aa63da42
Binary files /dev/null and b/assets/images/uipath-integration/uipath-two.webp differ
diff --git a/assets/images/uploads/lreports_se.png b/assets/images/uploads/lreports_se.png
new file mode 100644
index 00000000..0c4bc3cb
Binary files /dev/null and b/assets/images/uploads/lreports_se.png differ
diff --git a/assets/images/uploads/playwright_lighthouse_lib.png b/assets/images/uploads/playwright_lighthouse_lib.png
new file mode 100644
index 00000000..d556ea0c
Binary files /dev/null and b/assets/images/uploads/playwright_lighthouse_lib.png differ
diff --git a/assets/images/team-management/1.png b/assets/images/user-management/1.png
similarity index 100%
rename from assets/images/team-management/1.png
rename to assets/images/user-management/1.png
diff --git a/assets/images/team-management/2.png b/assets/images/user-management/2.png
similarity index 100%
rename from assets/images/team-management/2.png
rename to assets/images/user-management/2.png
diff --git a/assets/images/team-management/3.png b/assets/images/user-management/3.png
similarity index 100%
rename from assets/images/team-management/3.png
rename to assets/images/user-management/3.png
diff --git a/assets/images/team-management/4.png b/assets/images/user-management/4.png
similarity index 100%
rename from assets/images/team-management/4.png
rename to assets/images/user-management/4.png
diff --git a/assets/images/team-management/5.png b/assets/images/user-management/5.png
similarity index 100%
rename from assets/images/team-management/5.png
rename to assets/images/user-management/5.png
diff --git a/assets/images/team-management/6.png b/assets/images/user-management/6.png
similarity index 100%
rename from assets/images/team-management/6.png
rename to assets/images/user-management/6.png
diff --git a/assets/images/team-management/7.png b/assets/images/user-management/7.png
similarity index 100%
rename from assets/images/team-management/7.png
rename to assets/images/user-management/7.png
diff --git a/assets/images/team-management/8.png b/assets/images/user-management/8.png
similarity index 100%
rename from assets/images/team-management/8.png
rename to assets/images/user-management/8.png
diff --git a/assets/images/team-management/change-password-one.webp b/assets/images/user-management/change-password-one.webp
similarity index 100%
rename from assets/images/team-management/change-password-one.webp
rename to assets/images/user-management/change-password-one.webp
diff --git a/assets/images/team-management/change-password-two.webp b/assets/images/user-management/change-password-two.webp
similarity index 100%
rename from assets/images/team-management/change-password-two.webp
rename to assets/images/user-management/change-password-two.webp
diff --git a/assets/images/team-management/delete-one.webp b/assets/images/user-management/delete-one.webp
similarity index 100%
rename from assets/images/team-management/delete-one.webp
rename to assets/images/user-management/delete-one.webp
diff --git a/assets/images/team-management/delete-two.webp b/assets/images/user-management/delete-two.webp
similarity index 100%
rename from assets/images/team-management/delete-two.webp
rename to assets/images/user-management/delete-two.webp
diff --git a/assets/images/team-management/export.webp b/assets/images/user-management/export.webp
similarity index 100%
rename from assets/images/team-management/export.webp
rename to assets/images/user-management/export.webp
diff --git a/assets/images/team-management/pending-invite.webp b/assets/images/user-management/pending-invite.webp
similarity index 100%
rename from assets/images/team-management/pending-invite.webp
rename to assets/images/user-management/pending-invite.webp
diff --git a/assets/images/team-management/team-org.webp b/assets/images/user-management/team-org.webp
similarity index 100%
rename from assets/images/team-management/team-org.webp
rename to assets/images/user-management/team-org.webp
diff --git a/assets/images/team-management/user-id-one.webp b/assets/images/user-management/user-id-one.webp
similarity index 100%
rename from assets/images/team-management/user-id-one.webp
rename to assets/images/user-management/user-id-one.webp
diff --git a/assets/images/team-management/user-id-two.webp b/assets/images/user-management/user-id-two.webp
similarity index 100%
rename from assets/images/team-management/user-id-two.webp
rename to assets/images/user-management/user-id-two.webp
diff --git a/assets/images/xcui/xcui-test.jpeg b/assets/images/xcui/xcui-test.jpeg
new file mode 100644
index 00000000..9bce55c9
Binary files /dev/null and b/assets/images/xcui/xcui-test.jpeg differ
diff --git a/assets/images/zipboard-integration/1.webp b/assets/images/zipboard-integration/1.webp
deleted file mode 100644
index 30e10f5d..00000000
Binary files a/assets/images/zipboard-integration/1.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/10.webp b/assets/images/zipboard-integration/10.webp
deleted file mode 100644
index 671c31d5..00000000
Binary files a/assets/images/zipboard-integration/10.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/11.webp b/assets/images/zipboard-integration/11.webp
deleted file mode 100644
index a385e086..00000000
Binary files a/assets/images/zipboard-integration/11.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/12.webp b/assets/images/zipboard-integration/12.webp
deleted file mode 100644
index a153178e..00000000
Binary files a/assets/images/zipboard-integration/12.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/13.webp b/assets/images/zipboard-integration/13.webp
deleted file mode 100644
index 01a9cd04..00000000
Binary files a/assets/images/zipboard-integration/13.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/14.webp b/assets/images/zipboard-integration/14.webp
deleted file mode 100644
index 7c9955f8..00000000
Binary files a/assets/images/zipboard-integration/14.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/15.webp b/assets/images/zipboard-integration/15.webp
deleted file mode 100644
index 2aa9e825..00000000
Binary files a/assets/images/zipboard-integration/15.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/2.webp b/assets/images/zipboard-integration/2.webp
deleted file mode 100644
index 08ebd48a..00000000
Binary files a/assets/images/zipboard-integration/2.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/3.webp b/assets/images/zipboard-integration/3.webp
deleted file mode 100644
index 862963ce..00000000
Binary files a/assets/images/zipboard-integration/3.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/33.webp b/assets/images/zipboard-integration/33.webp
deleted file mode 100644
index cc346eb3..00000000
Binary files a/assets/images/zipboard-integration/33.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/4.webp b/assets/images/zipboard-integration/4.webp
deleted file mode 100644
index 42c89d6f..00000000
Binary files a/assets/images/zipboard-integration/4.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/5.webp b/assets/images/zipboard-integration/5.webp
deleted file mode 100644
index ba3a2a06..00000000
Binary files a/assets/images/zipboard-integration/5.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/6.webp b/assets/images/zipboard-integration/6.webp
deleted file mode 100644
index a78cb16a..00000000
Binary files a/assets/images/zipboard-integration/6.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/7-1.webp b/assets/images/zipboard-integration/7-1.webp
deleted file mode 100644
index a84dbd20..00000000
Binary files a/assets/images/zipboard-integration/7-1.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/7.webp b/assets/images/zipboard-integration/7.webp
deleted file mode 100644
index a7e8e994..00000000
Binary files a/assets/images/zipboard-integration/7.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/8.webp b/assets/images/zipboard-integration/8.webp
deleted file mode 100644
index e6764120..00000000
Binary files a/assets/images/zipboard-integration/8.webp and /dev/null differ
diff --git a/assets/images/zipboard-integration/9.webp b/assets/images/zipboard-integration/9.webp
deleted file mode 100644
index d8fc5050..00000000
Binary files a/assets/images/zipboard-integration/9.webp and /dev/null differ
diff --git a/assets/videos/hyperexecute/cli-gui/Screen Recording 2024-06-28 at 2.14.19 PM.mov b/assets/videos/hyperexecute/cli-gui/Screen Recording 2024-06-28 at 2.14.19 PM.mov
new file mode 100644
index 00000000..9d9d0406
Binary files /dev/null and b/assets/videos/hyperexecute/cli-gui/Screen Recording 2024-06-28 at 2.14.19 PM.mov differ
diff --git a/assets/videos/hyperexecute/cli-gui/step1.mp4 b/assets/videos/hyperexecute/cli-gui/step1.mp4
new file mode 100644
index 00000000..11053e44
Binary files /dev/null and b/assets/videos/hyperexecute/cli-gui/step1.mp4 differ
diff --git a/assets/videos/hyperexecute/cli-gui/step2.png b/assets/videos/hyperexecute/cli-gui/step2.png
new file mode 100644
index 00000000..c8c6e3cd
Binary files /dev/null and b/assets/videos/hyperexecute/cli-gui/step2.png differ
diff --git a/assets/videos/hyperexecute/cli-gui/step3.mp4 b/assets/videos/hyperexecute/cli-gui/step3.mp4
new file mode 100644
index 00000000..ea9cd5d3
Binary files /dev/null and b/assets/videos/hyperexecute/cli-gui/step3.mp4 differ
diff --git a/assets/videos/hyperexecute/cli-gui/step4.mp4 b/assets/videos/hyperexecute/cli-gui/step4.mp4
new file mode 100644
index 00000000..1d56b414
Binary files /dev/null and b/assets/videos/hyperexecute/cli-gui/step4.mp4 differ
diff --git a/assets/videos/hyperexecute/cli-gui/step5.mp4 b/assets/videos/hyperexecute/cli-gui/step5.mp4
new file mode 100644
index 00000000..22fd6b07
Binary files /dev/null and b/assets/videos/hyperexecute/cli-gui/step5.mp4 differ
diff --git a/assets/videos/hyperexecute/getting-started/guided-walkthrough/test-summary.mp4 b/assets/videos/hyperexecute/getting-started/guided-walkthrough/test-summary.mp4
new file mode 100644
index 00000000..7e16dab4
Binary files /dev/null and b/assets/videos/hyperexecute/getting-started/guided-walkthrough/test-summary.mp4 differ
diff --git a/assets/videos/hyperexecute/getting-started/run-first-job/local-system.mp4 b/assets/videos/hyperexecute/getting-started/run-first-job/local-system.mp4
new file mode 100644
index 00000000..5221dad9
Binary files /dev/null and b/assets/videos/hyperexecute/getting-started/run-first-job/local-system.mp4 differ
diff --git a/assets/videos/hyperexecute/getting-started/run-first-job/quick-run.mp4 b/assets/videos/hyperexecute/getting-started/run-first-job/quick-run.mp4
new file mode 100644
index 00000000..17d187c8
Binary files /dev/null and b/assets/videos/hyperexecute/getting-started/run-first-job/quick-run.mp4 differ
diff --git a/assets/videos/hyperexecute/integration/products/slack/1.mp4 b/assets/videos/hyperexecute/integration/products/slack/1.mp4
new file mode 100644
index 00000000..f0c66c58
Binary files /dev/null and b/assets/videos/hyperexecute/integration/products/slack/1.mp4 differ
diff --git a/assets/videos/hyperexecute/integration/products/slack/2.mp4 b/assets/videos/hyperexecute/integration/products/slack/2.mp4
new file mode 100644
index 00000000..edcf6e51
Binary files /dev/null and b/assets/videos/hyperexecute/integration/products/slack/2.mp4 differ
diff --git a/assets/videos/hyperexecute/integration/products/slack/3.mp4 b/assets/videos/hyperexecute/integration/products/slack/3.mp4
new file mode 100644
index 00000000..5e8c9cc8
Binary files /dev/null and b/assets/videos/hyperexecute/integration/products/slack/3.mp4 differ
diff --git a/assets/videos/hyperexecute/integration/products/slack/4.mp4 b/assets/videos/hyperexecute/integration/products/slack/4.mp4
new file mode 100644
index 00000000..bd8fab25
Binary files /dev/null and b/assets/videos/hyperexecute/integration/products/slack/4.mp4 differ
diff --git a/assets/videos/hyperexecute/integration/products/testim/grid-setup.mp4 b/assets/videos/hyperexecute/integration/products/testim/grid-setup.mp4
new file mode 100644
index 00000000..edeccc8c
Binary files /dev/null and b/assets/videos/hyperexecute/integration/products/testim/grid-setup.mp4 differ
diff --git a/assets/videos/hyperexecute/integration/products/testim/test-record.mp4 b/assets/videos/hyperexecute/integration/products/testim/test-record.mp4
new file mode 100644
index 00000000..9a639cf7
Binary files /dev/null and b/assets/videos/hyperexecute/integration/products/testim/test-record.mp4 differ
diff --git a/assets/videos/hyperexecute/knowledge-base/correct-concurrency/concurrency.mp4 b/assets/videos/hyperexecute/knowledge-base/correct-concurrency/concurrency.mp4
new file mode 100644
index 00000000..089d487c
Binary files /dev/null and b/assets/videos/hyperexecute/knowledge-base/correct-concurrency/concurrency.mp4 differ
diff --git a/assets/videos/hyperexecute/knowledge-base/secrets/add-secret.mp4 b/assets/videos/hyperexecute/knowledge-base/secrets/add-secret.mp4
new file mode 100644
index 00000000..1bd1c3b4
Binary files /dev/null and b/assets/videos/hyperexecute/knowledge-base/secrets/add-secret.mp4 differ
diff --git a/assets/videos/hyperexecute/knowledge-base/secrets/delete-secret.mp4 b/assets/videos/hyperexecute/knowledge-base/secrets/delete-secret.mp4
new file mode 100644
index 00000000..4e8a17fb
Binary files /dev/null and b/assets/videos/hyperexecute/knowledge-base/secrets/delete-secret.mp4 differ
diff --git a/assets/videos/hyperexecute/knowledge-base/secrets/update-secret.mp4 b/assets/videos/hyperexecute/knowledge-base/secrets/update-secret.mp4
new file mode 100644
index 00000000..fb81d67a
Binary files /dev/null and b/assets/videos/hyperexecute/knowledge-base/secrets/update-secret.mp4 differ
diff --git a/assets/videos/hyperexecute/knowledge-base/username-accesskey/method1.mp4 b/assets/videos/hyperexecute/knowledge-base/username-accesskey/method1.mp4
new file mode 100644
index 00000000..89994e01
Binary files /dev/null and b/assets/videos/hyperexecute/knowledge-base/username-accesskey/method1.mp4 differ
diff --git a/assets/videos/hyperexecute/knowledge-base/username-accesskey/method2.mp4 b/assets/videos/hyperexecute/knowledge-base/username-accesskey/method2.mp4
new file mode 100644
index 00000000..c4d8633e
Binary files /dev/null and b/assets/videos/hyperexecute/knowledge-base/username-accesskey/method2.mp4 differ
diff --git a/assets/videos/hyperexecute/task-metrics/stage-level-metrics.mp4 b/assets/videos/hyperexecute/task-metrics/stage-level-metrics.mp4
new file mode 100644
index 00000000..c7320586
Binary files /dev/null and b/assets/videos/hyperexecute/task-metrics/stage-level-metrics.mp4 differ
diff --git a/assets/videos/hyperexecute/task-metrics/task-level-metrics.mp4 b/assets/videos/hyperexecute/task-metrics/task-level-metrics.mp4
new file mode 100644
index 00000000..4ee9e28f
Binary files /dev/null and b/assets/videos/hyperexecute/task-metrics/task-level-metrics.mp4 differ
diff --git a/assets/videos/integration/bug-tracking/bugherd/api-token.mp4 b/assets/videos/integration/bug-tracking/bugherd/api-token.mp4
new file mode 100644
index 00000000..bbbc30a6
Binary files /dev/null and b/assets/videos/integration/bug-tracking/bugherd/api-token.mp4 differ
diff --git a/assets/videos/integration/bug-tracking/bugherd/bugherd-integrate.mp4 b/assets/videos/integration/bug-tracking/bugherd/bugherd-integrate.mp4
new file mode 100644
index 00000000..59f6c529
Binary files /dev/null and b/assets/videos/integration/bug-tracking/bugherd/bugherd-integrate.mp4 differ
diff --git a/assets/videos/integration/bug-tracking/bugherd/lodge-bug.mp4 b/assets/videos/integration/bug-tracking/bugherd/lodge-bug.mp4
new file mode 100644
index 00000000..6593af6b
Binary files /dev/null and b/assets/videos/integration/bug-tracking/bugherd/lodge-bug.mp4 differ
diff --git a/assets/videos/integration/bug-tracking/bugherd/uninstall-bugherd.mp4 b/assets/videos/integration/bug-tracking/bugherd/uninstall-bugherd.mp4
new file mode 100644
index 00000000..6b9c6b97
Binary files /dev/null and b/assets/videos/integration/bug-tracking/bugherd/uninstall-bugherd.mp4 differ
diff --git a/assets/videos/integration/bug-tracking/zipboard/lodge-bug.mp4 b/assets/videos/integration/bug-tracking/zipboard/lodge-bug.mp4
new file mode 100644
index 00000000..877f7fa9
Binary files /dev/null and b/assets/videos/integration/bug-tracking/zipboard/lodge-bug.mp4 differ
diff --git a/assets/videos/integration/bug-tracking/zipboard/remove-zipboard.mp4 b/assets/videos/integration/bug-tracking/zipboard/remove-zipboard.mp4
new file mode 100644
index 00000000..723cb7d2
Binary files /dev/null and b/assets/videos/integration/bug-tracking/zipboard/remove-zipboard.mp4 differ
diff --git a/assets/videos/integration/bug-tracking/zipboard/zipbaord-api-token.mp4 b/assets/videos/integration/bug-tracking/zipboard/zipbaord-api-token.mp4
new file mode 100644
index 00000000..4ffb8283
Binary files /dev/null and b/assets/videos/integration/bug-tracking/zipboard/zipbaord-api-token.mp4 differ
diff --git a/assets/videos/integration/bug-tracking/zipboard/zipboard-integration.mp4 b/assets/videos/integration/bug-tracking/zipboard/zipboard-integration.mp4
new file mode 100644
index 00000000..82f9f7d6
Binary files /dev/null and b/assets/videos/integration/bug-tracking/zipboard/zipboard-integration.mp4 differ
diff --git a/assets/videos/integration/project-management/teamwork/api-key.mp4 b/assets/videos/integration/project-management/teamwork/api-key.mp4
new file mode 100644
index 00000000..1be987d8
Binary files /dev/null and b/assets/videos/integration/project-management/teamwork/api-key.mp4 differ
diff --git a/assets/videos/integration/project-management/teamwork/lodge-bug.mp4 b/assets/videos/integration/project-management/teamwork/lodge-bug.mp4
new file mode 100644
index 00000000..65f53553
Binary files /dev/null and b/assets/videos/integration/project-management/teamwork/lodge-bug.mp4 differ
diff --git a/assets/videos/integration/project-management/teamwork/teamwork-integration.mp4 b/assets/videos/integration/project-management/teamwork/teamwork-integration.mp4
new file mode 100644
index 00000000..e9c3521c
Binary files /dev/null and b/assets/videos/integration/project-management/teamwork/teamwork-integration.mp4 differ
diff --git a/assets/videos/integration/project-management/teamwork/uninstall-teamwork.mp4 b/assets/videos/integration/project-management/teamwork/uninstall-teamwork.mp4
new file mode 100644
index 00000000..f2550c33
Binary files /dev/null and b/assets/videos/integration/project-management/teamwork/uninstall-teamwork.mp4 differ
diff --git a/assets/videos/integration/team-communication/rocketchat/rocketchat-bug.mp4 b/assets/videos/integration/team-communication/rocketchat/rocketchat-bug.mp4
new file mode 100644
index 00000000..5e9360f5
Binary files /dev/null and b/assets/videos/integration/team-communication/rocketchat/rocketchat-bug.mp4 differ
diff --git a/assets/videos/integration/team-communication/rocketchat/rocketchat-integration.mp4 b/assets/videos/integration/team-communication/rocketchat/rocketchat-integration.mp4
new file mode 100644
index 00000000..bcae741a
Binary files /dev/null and b/assets/videos/integration/team-communication/rocketchat/rocketchat-integration.mp4 differ
diff --git a/assets/videos/integration/team-communication/rocketchat/rocketchat-remove.mp4 b/assets/videos/integration/team-communication/rocketchat/rocketchat-remove.mp4
new file mode 100644
index 00000000..47abd48a
Binary files /dev/null and b/assets/videos/integration/team-communication/rocketchat/rocketchat-remove.mp4 differ
diff --git a/assets/videos/integration/team-communication/rocketchat/rocketchat-webhook.mp4 b/assets/videos/integration/team-communication/rocketchat/rocketchat-webhook.mp4
new file mode 100644
index 00000000..6c7dafb7
Binary files /dev/null and b/assets/videos/integration/team-communication/rocketchat/rocketchat-webhook.mp4 differ
diff --git a/assets/videos/real-time/chromeos-app/advance-tool.gif b/assets/videos/real-time/chromeos-app/advance-tool.gif
new file mode 100644
index 00000000..0bbf61d1
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/advance-tool.gif differ
diff --git a/assets/videos/real-time/chromeos-app/app-control.png b/assets/videos/real-time/chromeos-app/app-control.png
new file mode 100644
index 00000000..a202a766
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/app-control.png differ
diff --git a/assets/videos/real-time/chromeos-app/device-control.gif b/assets/videos/real-time/chromeos-app/device-control.gif
new file mode 100644
index 00000000..05bdb57f
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/device-control.gif differ
diff --git a/assets/videos/real-time/chromeos-app/gallery.gif b/assets/videos/real-time/chromeos-app/gallery.gif
new file mode 100644
index 00000000..c3d4c50d
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/gallery.gif differ
diff --git a/assets/videos/real-time/chromeos-app/ip-location.png b/assets/videos/real-time/chromeos-app/ip-location.png
new file mode 100644
index 00000000..adbfb425
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/ip-location.png differ
diff --git a/assets/videos/real-time/chromeos-app/launch-chrome-app.gif b/assets/videos/real-time/chromeos-app/launch-chrome-app.gif
new file mode 100644
index 00000000..91e8046e
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/launch-chrome-app.gif differ
diff --git a/assets/videos/real-time/chromeos-app/mark-bug.gif b/assets/videos/real-time/chromeos-app/mark-bug.gif
new file mode 100644
index 00000000..009b270e
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/mark-bug.gif differ
diff --git a/assets/videos/real-time/chromeos-app/network.png b/assets/videos/real-time/chromeos-app/network.png
new file mode 100644
index 00000000..743eda4e
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/network.png differ
diff --git a/assets/videos/real-time/chromeos-app/projects.png b/assets/videos/real-time/chromeos-app/projects.png
new file mode 100644
index 00000000..c6806c5d
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/projects.png differ
diff --git a/assets/videos/real-time/chromeos-app/record-session.gif b/assets/videos/real-time/chromeos-app/record-session.gif
new file mode 100644
index 00000000..320f67bd
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/record-session.gif differ
diff --git a/assets/videos/real-time/chromeos-app/screenshot.gif b/assets/videos/real-time/chromeos-app/screenshot.gif
new file mode 100644
index 00000000..dbcc0ab8
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/screenshot.gif differ
diff --git a/assets/videos/real-time/chromeos-app/setting.png b/assets/videos/real-time/chromeos-app/setting.png
new file mode 100644
index 00000000..9d77bc73
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/setting.png differ
diff --git a/assets/videos/real-time/chromeos-app/switch.gif b/assets/videos/real-time/chromeos-app/switch.gif
new file mode 100644
index 00000000..9ba8f5dc
Binary files /dev/null and b/assets/videos/real-time/chromeos-app/switch.gif differ
diff --git a/assets/videos/real-time/chromeos/device-control.gif b/assets/videos/real-time/chromeos/device-control.gif
new file mode 100644
index 00000000..f66971f4
Binary files /dev/null and b/assets/videos/real-time/chromeos/device-control.gif differ
diff --git a/assets/videos/real-time/chromeos/gallery.png b/assets/videos/real-time/chromeos/gallery.png
new file mode 100644
index 00000000..6ae0b969
Binary files /dev/null and b/assets/videos/real-time/chromeos/gallery.png differ
diff --git a/assets/videos/real-time/chromeos/ip.png b/assets/videos/real-time/chromeos/ip.png
new file mode 100644
index 00000000..31c137c1
Binary files /dev/null and b/assets/videos/real-time/chromeos/ip.png differ
diff --git a/assets/videos/real-time/chromeos/launch-chromos-web.gif b/assets/videos/real-time/chromeos/launch-chromos-web.gif
new file mode 100644
index 00000000..e54d5f26
Binary files /dev/null and b/assets/videos/real-time/chromeos/launch-chromos-web.gif differ
diff --git a/assets/videos/real-time/chromeos/mark-bug.gif b/assets/videos/real-time/chromeos/mark-bug.gif
new file mode 100644
index 00000000..b210a796
Binary files /dev/null and b/assets/videos/real-time/chromeos/mark-bug.gif differ
diff --git a/assets/videos/real-time/chromeos/mark-bug.mp4 b/assets/videos/real-time/chromeos/mark-bug.mp4
new file mode 100644
index 00000000..b210a796
Binary files /dev/null and b/assets/videos/real-time/chromeos/mark-bug.mp4 differ
diff --git a/assets/videos/real-time/chromeos/network.png b/assets/videos/real-time/chromeos/network.png
new file mode 100644
index 00000000..ae8cef0c
Binary files /dev/null and b/assets/videos/real-time/chromeos/network.png differ
diff --git a/assets/videos/real-time/chromeos/project.png b/assets/videos/real-time/chromeos/project.png
new file mode 100644
index 00000000..bf1919be
Binary files /dev/null and b/assets/videos/real-time/chromeos/project.png differ
diff --git a/assets/videos/real-time/chromeos/recording.gif b/assets/videos/real-time/chromeos/recording.gif
new file mode 100644
index 00000000..09edc634
Binary files /dev/null and b/assets/videos/real-time/chromeos/recording.gif differ
diff --git a/assets/videos/real-time/chromeos/screenshot.png b/assets/videos/real-time/chromeos/screenshot.png
new file mode 100644
index 00000000..34da06dc
Binary files /dev/null and b/assets/videos/real-time/chromeos/screenshot.png differ
diff --git a/assets/videos/real-time/chromeos/settings.gif b/assets/videos/real-time/chromeos/settings.gif
new file mode 100644
index 00000000..ecc7c8f9
Binary files /dev/null and b/assets/videos/real-time/chromeos/settings.gif differ
diff --git a/assets/videos/real-time/chromeos/settings.mp4 b/assets/videos/real-time/chromeos/settings.mp4
new file mode 100644
index 00000000..7fac0bfd
Binary files /dev/null and b/assets/videos/real-time/chromeos/settings.mp4 differ
diff --git a/assets/videos/smart-ui/slack-integration/slack-integration.mp4 b/assets/videos/smart-ui/slack-integration/slack-integration.mp4
new file mode 100644
index 00000000..9071a3c1
Binary files /dev/null and b/assets/videos/smart-ui/slack-integration/slack-integration.mp4 differ
diff --git a/assets/videos/smart-ui/slack-integration/slack-notification.png b/assets/videos/smart-ui/slack-integration/slack-notification.png
new file mode 100644
index 00000000..0bda2faf
Binary files /dev/null and b/assets/videos/smart-ui/slack-integration/slack-notification.png differ
diff --git a/assets/videos/team-management/1.mp4 b/assets/videos/team-management/1.mp4
new file mode 100644
index 00000000..59b65faf
Binary files /dev/null and b/assets/videos/team-management/1.mp4 differ
diff --git a/assets/videos/team-management/2.mp4 b/assets/videos/team-management/2.mp4
new file mode 100644
index 00000000..824f439d
Binary files /dev/null and b/assets/videos/team-management/2.mp4 differ
diff --git a/assets/videos/team-management/3.mp4 b/assets/videos/team-management/3.mp4
new file mode 100644
index 00000000..72e1bf03
Binary files /dev/null and b/assets/videos/team-management/3.mp4 differ
diff --git a/assets/videos/team-management/4.mp4 b/assets/videos/team-management/4.mp4
new file mode 100644
index 00000000..4066008f
Binary files /dev/null and b/assets/videos/team-management/4.mp4 differ
diff --git a/assets/videos/team-management/playwright.png b/assets/videos/team-management/playwright.png
new file mode 100644
index 00000000..7ec0c3db
Binary files /dev/null and b/assets/videos/team-management/playwright.png differ
diff --git a/assets/videos/team-management/selenium-js.png b/assets/videos/team-management/selenium-js.png
new file mode 100644
index 00000000..f2c8e810
Binary files /dev/null and b/assets/videos/team-management/selenium-js.png differ
diff --git a/config.json b/config.json
new file mode 100644
index 00000000..db3cce68
--- /dev/null
+++ b/config.json
@@ -0,0 +1,39 @@
+{
+ "index_name": "lambdatest-internal",
+ "start_urls": [
+ "https://staging.lambdatestinternal.com/support/"
+ ],
+ "sitemap_urls": [
+ "https://staging.lambdatestinternal.com/support/sitemap.xml"
+ ],
+ "sitemap_alternate_links": true,
+ "stop_urls": [
+ "/tests"
+ ],
+ "selectors": {
+ "lvl0": "article h1, header h1",
+ "lvl1": "article h2",
+ "lvl2": "article h3",
+ "lvl3": "article h4",
+ "lvl4": "article h5",
+ "text": "article p, article li, article td:last-child"
+ },
+ "strip_chars": " .,;:#",
+ "custom_settings": {
+ "separatorsToIndex": "_",
+ "attributesForFaceting": [
+ "language",
+ "version",
+ "type",
+ "docusaurus_tag"
+ ],
+ "attributesToRetrieve": [
+ "hierarchy",
+ "content",
+ "anchor",
+ "url",
+ "url_without_anchor",
+ "type"
+ ]
+ }
+ }
\ No newline at end of file
diff --git a/custom.js b/custom.js
index 26dd5e90..e42faadf 100644
--- a/custom.js
+++ b/custom.js
@@ -59,8 +59,8 @@
const isStage = () => {
if (
- window.location.origin.indexOf("staging") >= 0 ||
- window.location.origin.indexOf("dev") >= 0
+ window.location.origin.indexOf("staging") >= 0 ||
+ window.location.origin.indexOf("dev") >= 0
) {
return true;
} else {
@@ -72,86 +72,102 @@
var token = getCookie(isStage() ? 'stageAccessToken' : 'accessToken');
var apiURl = isStage() ? "https://stage-accounts.lambdatestinternal.com/api/user" : "https://accounts.lambdatest.com/api/user";
- fetch(apiURl,{
+ fetch(apiURl, {
headers: {
"Content-Type": "application/json",
"Accept": "application/json",
"Authorization": `Bearer ${token}`
}
- }).then(response => response.json())
- .then((result) => {
- console.log(`in fetch ${from}`)
- if(result.username) {
- document.getElementById("signbtn").href="https://billing.lambdatest.com/billing/plans"
- document.getElementById("signbtn").innerHTML="Upgrade"
- window.lt_web_doc.username = result.username;
- window.lt_web_doc.apiToken = result.apiToken;
- const lambda__doc__username = document.querySelectorAll(".lambdatest__username");
- if(lambda__doc__username && lambda__doc__username.length > 0) {
- for (var i = 0; i < lambda__doc__username.length; i++) {
- let username = lambda__doc__username[i];
- username.innerHTML = result.username
+ }).then(response => response.json())
+ .then((result) => {
+ console.log(`in fetch ${from}`)
+ if (result.username) {
+ document.getElementById("signbtn").href = "https://stage-billing.lambdatestinternal.com/billing/plans"
+ document.getElementById("signbtn").innerHTML = "Upgrade"
+ window.lt_web_doc.username = result.username;
+ window.lt_web_doc.apiToken = result.apiToken;
+ const lambda__doc__username = document.querySelectorAll(".lambdatest__username");
+ if (lambda__doc__username && lambda__doc__username.length > 0) {
+ for (var i = 0; i < lambda__doc__username.length; i++) {
+ let username = lambda__doc__username[i];
+ username.innerHTML = result.username
+ }
}
- }
- const lambda__doc__accessKey = document.querySelectorAll(".lambdatest__accessKey");
- if(lambda__doc__accessKey && lambda__doc__accessKey.length > 0) {
- for (var i = 0; i < lambda__doc__accessKey.length; i++) {
- let accessKey = lambda__doc__accessKey[i];
- accessKey.innerHTML = result.apiToken
+ const lambda__doc__accessKey = document.querySelectorAll(".lambdatest__accessKey");
+ if (lambda__doc__accessKey && lambda__doc__accessKey.length > 0) {
+ for (var i = 0; i < lambda__doc__accessKey.length; i++) {
+ let accessKey = lambda__doc__accessKey[i];
+ accessKey.innerHTML = result.apiToken
+ }
}
- }
- const lambda__doc__codeblock = document.querySelectorAll(".lambdatest__codeblock code");
- if(lambda__doc__codeblock && lambda__doc__codeblock.length > 0) {
- for (var i = 0; i < lambda__doc__codeblock.length; i++) {
- let codeblock = lambda__doc__codeblock[i];
- codeblock.innerHTML = codeblock.innerHTML.replace("YOUR_LAMBDATEST_USERNAME", result.username)
- codeblock.innerHTML = codeblock.innerHTML.replace("YOUR_LAMBDATEST_ACCESS_KEY", result.apiToken)
+ const lambda__doc__codeblock = document.querySelectorAll(".lambdatest__codeblock code");
+ if (lambda__doc__codeblock && lambda__doc__codeblock.length > 0) {
+ for (var i = 0; i < lambda__doc__codeblock.length; i++) {
+ let codeblock = lambda__doc__codeblock[i];
+ codeblock.innerHTML = codeblock.innerHTML.replace("YOUR_LAMBDATEST_USERNAME", result.username)
+ codeblock.innerHTML = codeblock.innerHTML.replace("YOUR_LAMBDATEST_ACCESS_KEY", result.apiToken)
+ }
}
+ } else {
+ window.lt_web_doc.username = "YOUR_LAMBDATEST_USERNAME"
+ window.lt_web_doc.apiToken = "YOUR_LAMBDATEST_ACCESS_KEY"
}
- } else {
- window.lt_web_doc.username = "YOUR_LAMBDATEST_USERNAME"
- window.lt_web_doc.apiToken = "YOUR_LAMBDATEST_ACCESS_KEY"
- }
}).catch(err => {
console.log(err)
window.lt_web_doc.username = "YOUR_LAMBDATEST_USERNAME"
window.lt_web_doc.apiToken = "YOUR_LAMBDATEST_ACCESS_KEY"
- })
+ })
}
-
+
window.addEventListener('DOMContentLoaded', (event) => {
getUsernameToken('dom');
- });
+ });
- function selectText(htmlelement) {
- var node = htmlelement;
- if (document.body.createTextRange) {
+ function selectText(htmlelement) {
+ var node = htmlelement;
+ if (document.body.createTextRange) {
const range = document.body.createTextRange();
range.moveToElementText(node);
range.select();
- } else if (window.getSelection) {
+ } else if (window.getSelection) {
const selection = window.getSelection();
const range = document.createRange();
range.selectNodeContents(node);
selection.removeAllRanges();
selection.addRange(range);
- } else {
+ } else {
console.log("Could not select text in node: Unsupported browser.");
+ }
+ document.execCommand('copy')
}
- document.execCommand('copy')
-}
- window.addEventListener('click', function (event) {
- if (event.target.matches(".clean-btn")) {
- let target = event.target || event.srcElement;
- let codeblock = target.closest('.lambdatest__codeblock');
- selectText(codeblock)
- }
- });
-
- window.sendAnalytics = async(eventName) => {
-
+ function sendAmplitudeEvents(eventName,data){
+ if (window.amplitude) {
+ window.amplitude.getInstance().logEvent(eventName, {
+ ...data,
+ });
+ }
+ }
+ window.addEventListener('click', function (event) {
+ if(event.target.matches(".menu__link")){
+ let params = window.location.href.split('/');
+ let pageName = params[params.length-2];
+ if(pageName.includes('hyperexecute')){
+ sendAmplitudeEvents('HYP: page changed - docs',{
+ pageName,
+ })
+ }
+ }
+ if (event.target.matches(".clean-btn")) {
+ let target = event.target || event.srcElement;
+ let codeblock = target.closest('.lambdatest__codeblock');
+ selectText(codeblock)
+ }
+ });
+
+ window.sendAnalytics = async (eventName) => {
+
let URL = "https://backend.lambdatest.com/api/analytics/event";
let payload = {
event: eventName,
@@ -194,29 +210,29 @@
}
handleUTMCookie();
- (function(history){
+ (function (history) {
var pushState = history.pushState;
- history.pushState = function(state) {
- setTimeout( function() {
+ history.pushState = function (state) {
+ setTimeout(function () {
if (typeof document !== "undefined") {
- var youtube = document.querySelectorAll( ".youtube" );
- for (var i = 0; i < youtube.length; i++) {
- var source = "https://img.youtube.com/vi/"+ youtube[i].dataset.embed +"/sddefault.jpg";
- var image = new Image();
- image.src = source;
- image.alt = "Youtube Thumbnail";
- image.addEventListener( "load", function() {
- youtube[ i ].appendChild( image );
- }( i ) );
- youtube[i].addEventListener( "click", function() {
- var iframe = document.createElement( "iframe" );
- iframe.setAttribute( "frameborder", "0" );
- iframe.setAttribute( "allowfullscreen", "" );
- iframe.setAttribute( "src", "https://www.youtube.com/embed/"+ this.dataset.embed +"?rel=0&showinfo=0&autoplay=1" );
- this.innerHTML = "";
- this.appendChild( iframe );
- });
- };
+ var youtube = document.querySelectorAll(".youtube");
+ for (var i = 0; i < youtube.length; i++) {
+ var source = "https://img.youtube.com/vi/" + youtube[i].dataset.embed + "/sddefault.jpg";
+ var image = new Image();
+ image.src = source;
+ image.alt = "Youtube Thumbnail";
+ image.addEventListener("load", function () {
+ youtube[i].appendChild(image);
+ }(i));
+ youtube[i].addEventListener("click", function () {
+ var iframe = document.createElement("iframe");
+ iframe.setAttribute("frameborder", "0");
+ iframe.setAttribute("allowfullscreen", "");
+ iframe.setAttribute("src", "https://www.youtube.com/embed/" + this.dataset.embed + "?rel=0&showinfo=0&autoplay=1");
+ this.innerHTML = "";
+ this.appendChild(iframe);
+ });
+ };
}
}, 500);
getUsernameToken('history');
@@ -264,14 +280,14 @@
const elements = document.getElementsByTagName(tagName);
for (let i = 0; i < elements.length; i++) {
const element = elements[i];
- if(!element?.parentElement?.className?.includes("clean-btn")){
+ if (!element?.parentElement?.className?.includes("clean-btn")) {
if (!element.hasAttribute('role')) {
element.setAttribute('role', 'presentation');
}
if (!element.hasAttribute('aria-hidden')) {
element.setAttribute('aria-hidden', 'true');
}
- }else{
+ } else {
element.setAttribute('role', 'img');
element.setAttribute('aria-label', 'Document Theme Switch mode button');
}
@@ -285,11 +301,7 @@
//username ends
})();
-setTimeout(function () {
- if (typeof document !== "undefined") {
- youtubeIframe()
- }
-}, 500);
+
function youtubeIframe() {
var youtube = document.querySelectorAll(".youtube");
@@ -298,7 +310,7 @@ function youtubeIframe() {
var loading = youtube[i].getAttribute("data-loading-attribute")
var image = new Image();
image.src = source;
- image.alt="Youtube Image";
+ image.alt = "Youtube Image";
image.loading = loading ? loading : "";
image.addEventListener("load", function () {
youtube[i].appendChild(image);
@@ -313,5 +325,45 @@ function youtubeIframe() {
});
};
}
+function overflowMainScreen(){
+ const path = window.location.pathname;
+ if (path === "/support/docs/") {
+ const mainWrapper = document.querySelector('.main-wrapper');
+ if (mainWrapper) {
+ const cleanButton = mainWrapper.querySelector('button.clean-btn');
+ if (cleanButton) {
+ const nextDiv = cleanButton.nextElementSibling;
+ if (nextDiv && nextDiv.tagName.toLowerCase() === 'div') {
+ nextDiv.classList.add('hide_extra_space_main_div');
+ console.log("Class added to next div");
+ }
+ }
+ }
+ }
+}
+setTimeout(function () {
+ if (typeof document !== "undefined") {
+ youtubeIframe()
+ overflowMainScreen()
+ }
+}, 500);
+
+(function () {
+ if (typeof window !== "undefined") {
+ document.addEventListener('DOMContentLoaded', function () {
+ const algoliaSearchBar = document.querySelector('.DocSearch-Button');
+ if (algoliaSearchBar) {
+ algoliaSearchBar.style.display = 'none';
+ }
+ });
+ window.addEventListener('load', function () {
+ const algoliaSearchBar = document.querySelector('.DocSearch-Button');
+ if (algoliaSearchBar) {
+ algoliaSearchBar.style.display = 'block';
+ }
+ });
+ }
+})
+
diff --git a/docs/accelq-integration.md b/docs/accelq-integration.md
index 4795f782..ec60a480 100644
--- a/docs/accelq-integration.md
+++ b/docs/accelq-integration.md
@@ -2,7 +2,7 @@
id: accelq-integration
title: ACCELQ Integration
hide_title: true
-sidebar_label: ACCELQ Integration
+sidebar_label: ACCELQ
description: Accelerate your end-to-end digital testing journey with LambdaTest and ACCELQ. Automate your web and mobile apps across 3000+ real browsers, devices and operating system combinations.
keywords:
- lambdatest integration with accelq
diff --git a/docs/accessibility-automation-settings.md b/docs/accessibility-automation-settings.md
new file mode 100644
index 00000000..264d3192
--- /dev/null
+++ b/docs/accessibility-automation-settings.md
@@ -0,0 +1,95 @@
+---
+id: accessibility-automation-settings
+title: Configure Accessibility Automation
+hide_title: false
+sidebar_label: Configure Accessibility Automation
+description: Customize your testing with LambdaTest Accessibility DevTools' extensive settings, tailored to meet your specific needs and preferences.
+keywords:
+ - LambdaTest
+ - Accessibility
+ - Testing
+ - DevTools
+ - Accessibility Testing Settings
+url: https://www.lambdatest.com/support/docs/accessibility-automation-settings/
+site_name: LambdaTest
+slug: accessibility-automation-settings/
+---
+
+import CodeBlock from '@theme/CodeBlock';
+import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys";
+
+
+This document details the configuration options available for your automated accessibility tests, ensuring comprehensive and efficient assessments.
+
+To enable the accessibility testing within your automated test suite, set the accessibility: true in your configuration file. You can also define other settings capabilities as described below.
+
+```java
+"accessibility" : true, // Enable accessibility testing
+"accessibility.wcagVersion": "wcag21a", // Specify WCAG version (e.g., WCAG 2.1 Level A)
+"accessibility.bestPractice": false, // Exclude best practice issues from results
+"accessibility.needsReview": true // Include issues that need review
+```
+
+## Key Configurations Options
+
+By configuring these options effectively, you can tailor your accessibility tests to achieve a balance between thoroughness and efficiency, ensuring your web applications are inclusive for all users.
+
+### 1. Enable Accessibility Checks
+
+- **Purpose:** Activate accessibility testing within your automated test suite. This allows you to identify and address accessibility violations that might hinder usability for users with disabilities.
+- **Implementation:** Set the `accessibility` property to `true` within your configuration file.
+
+```bash
+accessibility : true
+```
+
+### 2. WCAG Version
+
+- **Purpose:** Define the specific Web Content Accessibility Guidelines (WCAG) version your tests should evaluate against. WCAG defines internationally recognized standards for web accessibility.
+- **Options:** Common options include WCAG 2.0, WCAG 2.1 Level A, or WCAG 2.1 Level AAA. Each level represents increasing accessibility requirements.
+- **Implementation:** Specify the desired WCAG version using the wcagVersion property within your configuration file.
+
+```bash
+accessibility.wcagVersion: 'wcag21a'
+```
+
+### 3. Best Practices Checks
+
+- **Purpose:** Include or exclude checks that go beyond the defined WCAG standards but are considered good practices for optimal usability.
+- **Default Value:** The default setting is false, focusing strictly on WCAG violations.
+- **Implementation:** Enable best practice checks by setting bestPractice to true in your configuration file.
+
+```bash
+accessibility.bestPractice: false
+```
+
+### 4. Needs Review
+
+- **Purpose:** Flag potential accessibility issues that might require human evaluation for definitive assessment.
+- **Implementation:** Enable needs review checks by setting needsReview to true in your configuration file. This ensures potentially ambiguous issues get flagged for manual review.
+
+```bash
+accessibility.needsReview: true
+```
\ No newline at end of file
diff --git a/docs/accessibility-automation-test.md b/docs/accessibility-automation-test.md
new file mode 100644
index 00000000..abcbd0eb
--- /dev/null
+++ b/docs/accessibility-automation-test.md
@@ -0,0 +1,132 @@
+---
+id: accessibility-automation-test
+title: Accessibility Testing on HyperExecute using Selenium
+sidebar_label: Selenium
+description: Use LambdaTest Accessibility DevTools to detect and report accessibility issues with automation, following WCAG guidelines.
+keywords:
+ - LambdaTest
+ - Accessibility
+ - Testing
+ - Automation
+ - Accessibility Testing Settings
+url: https://www.lambdatest.com/support/docs/accessibility-automation-test/
+site_name: LambdaTest
+slug: accessibility-automation-test/
+---
+
+import CodeBlock from '@theme/CodeBlock';
+import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys";
+import Tabs from '@theme/Tabs';
+import TabItem from '@theme/TabItem';
+
+
+
+This document walks you through the process of evaluating the accessibility of your website through the execution of automated tests using LambdaTest's Accessibility Tool.
+
+> Compatible only with Chrome and Edge browser versions >= 90.
+
+## Prerequisites
+
+- Your [LambdaTest Username and Access key](/support/docs/using-environment-variables-for-authentication-credentials/)
+- Setup your local machine as per your testing framework.
+
+## Step-by-Step Guide to Trigger Your Test
+
+### Step 1: Setup Your Test Suite
+
+You can use your own project to configure and test it. For demo purposes, we are using the sample repository.
+
+:::tip sample repo
+Download or Clone the code sample from the LambdaTest GitHub repository to run your tests.
+
+ View on GitHub
+:::
+
+If you are using your own project, make sure you update the **Hub endpoint** in your tests file. By setting up the Hub endpoint, you establish the communication channel between your tests and the browser nodes, enabling effective test distribution and execution.
+
+Configure the desired capabilities based on your test requirements. For example:
+
+```java
+DesiredCapabilities capabilities = new DesiredCapabilities();
+capabilities.setCapability("browserName", "chrome");
+capabilities.setCapability("version", "70.0");
+capabilities.setCapability("platform", "win10"); # If this cap isn't specified, it will just get the any available one
+capabilities.setCapability("build", "LambdaTestSampleApp");
+capabilities.setCapability("name", "LambdaTestJavaSample");
+```
+
+> You can generate capabilities for your test requirements with the help of our inbuilt 🔗 [Capabilities Generator Tool](https://www.lambdatest.com/capabilities-generator/).
+
+### Step 2: Establish User Authentication
+
+Now, you need to export your environment variables *LT_USERNAME* and *LT_ACCESS_KEY* that are available in the [LambdaTest Profile page](https://accounts.lambdatest.com/detail/profile).
+
+Run the below mentioned commands in your terminal to setup the CLI and the environment variables.
+
+
\ No newline at end of file
diff --git a/docs/accessibility-automation.md b/docs/accessibility-automation.md
new file mode 100644
index 00000000..19b13c31
--- /dev/null
+++ b/docs/accessibility-automation.md
@@ -0,0 +1,86 @@
+---
+id: accessibility-automation
+title: LambdaTest Accessibility Automation
+hide_title: false
+sidebar_label: Accessibility Automation
+description: Use Automation tools like LambdaTest Accessibility DevTools' to detect and report accessibility issues using WCAG Guidelines.
+keywords:
+ - LambdaTest
+ - Accessibility
+ - Testing
+ - Automation
+ - Accessibility Testing Settings
+url: https://www.lambdatest.com/support/docs/accessibility-automation/
+site_name: LambdaTest
+slug: accessibility-automation/
+---
+
+import CodeBlock from '@theme/CodeBlock';
+import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys";
+
+
+Imagine a world where everyone can access and enjoy the digital content you create. LambdaTest Accessibility Automation empowers you to achieve just that!
+
+LambdaTest Accessibility Automation unlocks the power of automated tools and scripts to pinpoint and report accessibility roadblocks within your web applications. This ensures your digital content is inclusive and usable by everyone, including people with disabilities. Think of it as a helping hand in adhering to established guidelines like the Web Content Accessibility Guidelines (WCAG).
+
+## Why is it Important?
+
+Our goal is **a web that's accessible to all**. Accessibility automation helps you identify any obstacles that might prevent users with disabilities from interacting with your content. By automating these checks, you can:
+
+- **Save Time and Resources:** Focus on creating amazing features, not repetitive testing.
+- **Ensure Consistency:** Catch accessibility issues across every page and application, leaving no blind spots.
+- **Scale with Ease:** Accessibility automation handles even the largest websites, keeping your content inclusive as it grows.
+- **Stay Compliant:** Meet legal requirements like WCAG, ADA, and Section 508 with confidence.
+
+## How Does it Work?
+
+LambdaTest Accessibility Automation seamlessly integrates with your existing workflows:
+
+- **Integrated Testing:** Works hand-in-hand with popular testing frameworks like Selenium and Cypress.
+- **Issue Detection:** Get clear reports highlighting the specific accessibility roadblocks found, their severity (critical, high, medium, low), and suggestions on how to fix them.
+- **Automated Scans:** These tools meticulously scan your web pages, checking them against a comprehensive set of accessibility best practices. This includes identifying issues like missing image descriptions (alt text), insufficient color contrast between text and background, or incorrect use of ARIA attributes (accessibility features for screen readers and other assistive technologies).
+
+## The Power Behind the Scenes
+
+- **Rules Engine:** This is the brain of the operation, defining the accessibility rules based on established guidelines.
+- **Web Crawler:** This tireless explorer automatically navigates your web pages, ensuring a comprehensive scan.
+- **Centralized Dashboard:** Your one-stop shop for viewing reports, tracking identified issues, and monitoring your accessibility progress over time.
+
+## Who Benefits?
+
+LambdaTest Accessibility Automation is designed for a wide range of web professionals:
+
+- **Developers:** Integrate and fix accessibility issues early in the development cycle.
+- **Test Engineers:** Get robust testing tools and detailed reports to ensure a smooth user experience for all.
+- **QA Managers:** Enjoy centralized reporting and effortless compliance tracking.
+- **UX/UI Designers:** Access design guidelines and testing tools to craft inclusive experiences.
+- **Product Managers:** Monitor accessibility progress and ensure legal compliance.
+
+### Beyond the Core Users
+
+- **Compliance Officers:** Verify adherence to accessibility regulations.
+- **Content Authors:** Create accessible content with confidence.
+
+> By making accessibility automation a part of your development process, you're building a web that's welcoming and inclusive for everyone.
diff --git a/docs/accessibility-devtools-settings.md b/docs/accessibility-devtools-settings.md
new file mode 100644
index 00000000..161b32cc
--- /dev/null
+++ b/docs/accessibility-devtools-settings.md
@@ -0,0 +1,88 @@
+---
+id: accessibility-devtools-settings
+title: Configure Accessibility DevTools
+hide_title: false
+sidebar_label: Configure Accessibility DevTools
+description: Customize your testing experience with LambdaTest Accessibility DevTools' comprehensive settings to meet your specific needs and preferences.
+keywords:
+ - LambdaTest
+ - Accessibility
+ - Testing
+ - DevTools
+ - Accessibility Testing Settings
+url: https://www.lambdatest.com/support/docs/accessibility-devtools-settings/
+site_name: LambdaTest
+slug: accessibility-devtools-settings/
+---
+
+import CodeBlock from '@theme/CodeBlock';
+import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys";
+
+
+LambdaTest Accessibility DevTools offer a comprehensive set of settings to customize your testing experience and tailor it to your specific needs.
+
+- Click on your **profile icon** >> **Settings** button.
+
+
+
+## Scan Settings
+
+### WCAG Version
+
+You can select any WCAG Version to run compliance tests with a specific version.
+
+> The recommended version is **WCAG 2.1 AA**.
+
+
+
+### Review Issues
+
+There are certain issues that are required reviews by QA or Developers to mark them as issues and clarifies that it needs to be resolved.
+
+- Click on the **Review** button.
+
+
+
+- This will open the list of issues that needs to be reviewed.
+- Click on the particular issue >> select that particular element that you want to confirm it as an issue.
+- Click on **Yes** option to confirm it as an issue.
+- You can also **Undo** that particular issue. This means if you will visit that issue again, you can see an **undo** option which will unlist it again from the list of **confirmed issues**.
+
+
+
+### Best Practices
+
+**Best practices** are those issues that may not violate Accessibility guidelines but fixing them will enhance your user experience.
+
+## Other Settings
+
+### Autosave Reports
+
+>**Note :** By default, this option is activated.
+
+- Toggle to activate / deactivate the option.
+- This option ensures that your tests are consistently saved on the dashboard.
+
+
\ No newline at end of file
diff --git a/docs/accessibility-devtools.md b/docs/accessibility-devtools.md
new file mode 100644
index 00000000..eaaca808
--- /dev/null
+++ b/docs/accessibility-devtools.md
@@ -0,0 +1,107 @@
+---
+id: accessibility-devtools
+title: LambdaTest Accessibility DevTools
+hide_title: false
+sidebar_label: Accessibility DevTools
+description: Ensure your digital products are accessible to people with disabilities through comprehensive testing and improvement using LambdaTest Accessibility DevTools.
+keywords:
+ - LambdaTest
+ - Accessibility
+ - Testing
+ - DevTools
+url: https://www.lambdatest.com/support/docs/accessibility-devtools/
+site_name: LambdaTest
+slug: accessibility-devtools/
+---
+
+import CodeBlock from '@theme/CodeBlock';
+import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys";
+
+
+
+LambdaTest Accessibility DevTools is a browser extension designed to help developers and testers identify and resolve accessibility issues within web applications. It simplifies the process of ensuring your website is usable by everyone, regardless of their abilities.
+
+
+
+
+
+## Key Features
+
+- **Accessibility Scanning:** The DevTools can scan entire web pages (full page scan), specific website elements (partial page scan), or even multiple pages simultaneously (multi-page scan) to identify accessibility violations.
+- **Compliance with Standards:** The scanning process is powered by Axe-core, a popular accessibility testing engine, and helps ensure your website adheres to accessibility standards like WCAG (Web Content Accessibility Guidelines).
+- **Detailed Reporting:** After a scan, the DevTools generate a comprehensive report that details all identified accessibility issues. This report includes the severity level (critical, serious, or minor) of each issue, along with a clear explanation and suggested remediation steps.
+
+## Benefits of LambdaTest Accessibility DevTools
+
+- **Improved User Experience:** By identifying and fixing accessibility issues, you create a website that's usable for everyone, including users with disabilities.
+- **Reduced Legal Risks:** Many countries have regulations regarding website accessibility. Using the DevTools helps mitigate potential legal risks associated with non-compliance.
+- **Enhanced SEO:** Accessible websites tend to rank higher in search engine results pages (SERPs) as search engines consider accessibility a factor.
+
+
+
+
Step-by-Step guide to install the LambdaTest DevTools browser extension
+Step-by-Step guide to run your first accessibility test with DevTools.
+Get a comprehensive analysis of entire web page for accessibility compliance & best practices..
+Get the accessibility check for selected sections or elements within a web page.
+Learn how to assess accessibility across various pages for site-wide compliance.
+Workflow Scan sequentially ensure accessibility standards across multiple pages or flows.
+Customize your accessibility testing experience and as per your specific requirements.
+Get a comprehensive accessibility analysis via browser extension.
+Get the accessibility check for automated tests and scripts.
+Powered By Axe-Core
Axe-core® is a trademark of Deque Systems, Inc. in the US and other countries.
+Learn how to manage your account subscription for the LambdaTest.
Learn how to Monitor and Report Test Execution at the user level.
Learn how to distribute concurrency to different sub-organizations .
Learn how to take access to your LambdaTest account and log in on your behalf from the backend.
Learn how to invite your team members to your organizational LambdaTest Account.
Learn how to increase the account security by enabling Multi Factor Authentication.
This documentation will guide you through the steps to delete your LambdaTest account
Learn how to perform the test automation by dividing the concurrency among the groups.
Learn how to Audit your Logs as well as of your Organization Team Members.
Learn how to manage your and yours organization member Password and Access Key Expiration Policy.
Learn how to manage your Tunnel Setup and Securities.
diff --git a/docs/adb-commands-support.md b/docs/adb-commands-support.md index 24d9d93e..213a03e2 100644 --- a/docs/adb-commands-support.md +++ b/docs/adb-commands-support.md @@ -20,6 +20,8 @@ slug: adb-commands-support/ import CodeBlock from '@theme/CodeBlock'; import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys"; +import RealDeviceTag from '../src/component/realDevice'; +import VirtualDeviceTag from '../src/component/virtualDevice'; - - Android Debug Bridge (adb) is a versatile command-line tool that lets users communicate with a device. The adb command facilitates a variety of device actions, such as installing and debugging apps. LambdaTest provides support for limited commands which can be executed in your app automation test scripts via javascript executors. The following command with the below mentioned parameters need to be used to execute adb command with LambdaTest real device cloud. @@ -56,10 +56,10 @@ driver.execute_script("lambda-adb", params) ## Supported Commands ---- +> **NOTE :** All these commands are supported on both Real and Virtual Devices except for the [**adb shell dumpsys**](/support/docs/adb-commands-support/#adb-shell-command) command, which is not supported for Virtual Device. ### Swipe -**adb shell input swipe** +**adb shell input swipe**Explore various dashboards that provide a comprehensive view of your testing activities, enabling you to monitor performance, identify issues, and make data-driven decisions.
+Learn how to to get an overview of the LambdaTest resources being utilized by your teams.
+Learn how to get an overview of the tests running on the LambdaTest.
+Learn how to get all the insights into the test errors on the LambdaTest.
+Monitor all the Flaky tests run on the platform and review the quality of the feature on your SMOKE and Regression Jobs.
+Get insights for `describe()` block level for your test frameworks in HyperExecute. Monitor the quality metrics at each test case.
+Get API test time-series insights using Allure report integration with your test suite and run it on HyperExecute.
+Monitor and allocate the right resources required for your organizations with advanced insights.
+Gain detailed insights for ensuring optimal performance and resource utilization for your dedicated devices.
+Get detailed insights into your product usage and optimize your testing efforts.
+Gain valuable insights into your web automation testing efforts with comprehensive analytics and metrics.
+Unlock the power of analytics to optimize your mobile app testing process and improve app quality.
+Leverage advanced analytics to streamline your HyperExecute testing pipeline and boost testing efficiency.
+Get real-time insights into your testing activities and make data-driven decisions on the fly.
+Analyze your real device testing performance and identify optimization opportunities.
+Gain actionable insights into your SmartUI testing efforts and ensure exceptional user experiences.
+Ensure your application or website meets WCAG standards with comprehensive accessibility insights.
+Manage your project-level tests comprehensively, track the progress of test suite development with detailed insights.
+Gain valuable insights into your web automation testing efforts with comprehensive analytics and metrics.
+Unlock the power of analytics to optimize your mobile app testing process and improve app quality.
+Leverage advanced analytics to streamline your HyperExecute testing pipeline and boost testing efficiency.
+Get real-time insights into your testing activities and make data-driven decisions on the fly.
+Analyze your real device testing performance and identify optimization opportunities.
+Gain actionable insights into your SmartUI testing efforts and ensure exceptional user experiences.
+Learn how to to get an overview of the LambdaTest resources being utilized by your teams.
+Learn how to get an overview of the tests running on the LambdaTest.
+Learn how to get all the insights into the test errors on the LambdaTest.
+Monitor all the Flaky tests run on the platform and review the quality of the feature on your SMOKE and Regression Jobs.
+Get insights for `describe()` block level for your test frameworks in HyperExecute. Monitor the quality metrics at each test case.
+Get API test time-series insights using Allure report integration with your test suite and run it on HyperExecute.
+Monitor and allocate the right resources required for your organizations with advanced insights.
+Gain detailed insights for ensuring optimal performance and resource utilization for your dedicated devices.
+Get detailed insights into your product usage and optimize your testing efforts.
+Gain valuable insights into your web automation testing efforts with comprehensive analytics and metrics.
+Unlock the power of analytics to optimize your mobile app testing process and improve app quality.
+Leverage advanced analytics to streamline your HyperExecute testing pipeline and boost testing efficiency.
+Analyze your real device testing performance and identify optimization opportunities.
+Get real-time insights into your testing activities and make data-driven decisions on the fly.
+Gain actionable insights into your SmartUI testing efforts and ensure exceptional user experiences.
+Ensure your application or website meets WCAG standards with comprehensive accessibility insights.
+Manage your project-level tests comprehensively, track the progress of test suite development with detailed insights.
+Guidebook about the features offered for testing your webapps in ChromeOS
+Guidebook about the features offered for testing your apps in ChromeOS
+We support all Appium-compatible languages and frameworks, so if your favorite isn't listed, let us know.
Don't worry, the test can still be run. window.openLTChatWidget()}>Contact Us for any help.
We support all languages and frameworks that are compatible with Appium, so in case your favorite isn't in the table.
Don't worry, you can still run the test. window.openLTChatWidget()}>Contact Us for any help.
Everything you need to know about HyperExecute concepts and how it works.
+Everything you need to know about HyperExecute status and what does it implies.
-
In case your favorite framework or tool isn't listed here, just give us a window.openLTChatWidget()}>Shout Out Here. @@ -346,438 +142,9 @@ You can also find us on the [Microsoft Azure Marketplace](https://azuremarketpla
We support all languages and frameworks that are compatible with Selenium, so in case your favorite isn't in the table.
Don't worry, you can still run the test. window.openLTChatWidget()}>Contact Us for any help.
@@ -163,7 +163,7 @@ https://user-name:access-key@hub.lambdatest.com/wd/hub
For this article, we have set the number of parallel processes as '4'.
-* Now we have all the components of the SIDE Runner command to execute the tests. So we will run the Selenium IDE tests on LambdaTest Selenium Cloud Grid. Navigate to the directory where the .SIDE file is located (here it is located at "LambdaTest-IDE.side") and excecute the below command in the terminal, after replacing the GRID URL:
+* Now we have all the components of the SIDE Runner command to execute the tests. So we will run the Selenium IDE tests on LambdaTest Selenium Cloud Grid. Navigate to the directory where the .SIDE file is located (here it is located at "LambdaTest-IDE.side") and execute the below command in the terminal, after replacing the GRID URL:
```bash
selenium-side-runner -w 4 "LambdaTest-IDE.side" --server
diff --git a/docs/github-actions-with-hyperexecute.md b/docs/github-actions-with-hyperexecute.md
index 0624bfd8..2829a865 100644
--- a/docs/github-actions-with-hyperexecute.md
+++ b/docs/github-actions-with-hyperexecute.md
@@ -1,7 +1,6 @@
---
id: github-actions-with-hyperexecute
-title: GitHub Actions Integration
-hide_title: true
+title: GitHub Actions Pipeline Integration with Hyperexecute
sidebar_label: GitHub Actions
description: LambdaTest now integrates with GitHub Actions Pipeline to boost your go-to market delivery. Perform automated cross browser testing with LambdaTest to ensure your development code renders seamlessly through an online Selenium grid providing 3000+ real browsers running through machines.
keywords:
@@ -39,105 +38,47 @@ slug: github-actions-with-hyperexecute/
})
}}
>
-
-# GitHub Actions Pipeline Integration with Hyperexecute
-* * *
-
GitHub Actions is a continuous integration and continuous delivery (CI/CD) platform that allows you to automate your build, test, and deployment pipeline. You can create workflows that build and test every pull request to your repository, or deploy merged pull requests to production.
This document will show you how to integrate GitHub Actions Pipeline with HyperExecute to greatly shorten your test cycles.
-## How To Integrate GitHub Actions Pipeline with Hyperexecute
+## Steps To Integrate GitHub Actions Pipeline with HyperExecute
+To integrate GitHub Actions Pipeline with HyperExecute, follow the below steps. You can use your own project to configure and test it. For demo purposes, we are using the sample repository.
-***
+:::tip Sample repo
+Download or Clone the code sample from the LambdaTest GitHub repository to run the tests on the HyperExecute.
-To integrate GitHub Actions Pipeline with HyperExecute, follow the below steps:
-### 1. Log into your GitHub account
+
View on GitHub
+:::
+
+### Step 1: Create a New Workflow
- Navigate to the main page of the repository.
- Under your repository name, click **Actions**.
+- In the left sidebar, click the **New workflow** button.
-### 2. Create a New Workflow
-In the left sidebar, click the **New workflow** button.
-
-
-
-### 3. Create the GitHub Actions work-flow YAML file:
-
+### Step 2: Create the GitHub Actions workflow YAML file
To create the GitHub Actions pipeline YAML file, follow the sample command below:
+```yaml reference title="github-actions.yml"
+https://github.com/LambdaTest/hyp-ci-cd-integration-sample/blob/main/.github/workflows/main.yml
```
-name: Hyperexecute-Playwright
-on:
- workflow_dispatch:
- inputs:
- username:
- required: true
- description: LT Username
- accessKey:
- description: LT Access Key
- required: true
- sampleRepoLink:
- description: Link to the HyperExecute sample repo
- default: https://github.com/prateekLambda/HyperExecute-Playwright-Vanilla-Javascript
- required: true
-jobs:
- HyperExecute-Playwright:
- runs-on: ${{ matrix.os }}
- timeout-minutes: 15
- strategy:
- fail-fast: false
- matrix:
- os: [windows-latest]
- steps:
- - name: Checkout sources
- uses: actions/checkout@v2
-
- - name: Starting CLI testing
- shell: bash
- run: |
- echo "STEP 1 ) Downloading sample suite"
- git clone ${{ github.event.inputs.sampleRepoLink }}
- echo "STEP 2) Download CLI and setting environment variables"
- cd HyperExecute-Playwright-Vanilla-Javascript
- curl https://downloads.lambdatest.com/hyperexecute/windows/hyperexecute.exe -o hyperexecute.exe
- export LT_USERNAME=${{ github.event.inputs.username }}
- export LT_ACCESS_KEY=${{ github.event.inputs.accessKey }}
- echo $LT_USERNAME
- echo $LT_ACCESS_KEY
- ./hyperexecute --user $LT_USERNAME --key $LT_ACCESS_KEY --config yaml/win/.hyperexecute_autosplits.yaml
-
-```
-- **On:**
- - **Workflow_dispatch:** In the **workflow_dispatch** section, you should declare the pre-defined variables that will be used before running the GitHub Actions PipeLine as an input.
-- **Jobs:**
+- **on:**
+ - **workflow_dispatch:** Here you declare the pre-defined variables that will be used before running the GitHub Actions Pipeline as an input.
+- **jobs:**
In the Jobs Section, declare the workflow of the pipeline execution.
- - **runs-on**: Runs-on contains the value of the OS flavor you would like to execute the GitHub Actions Pipeline on.
-- **Steps**:
-In the steps section, you should declare the execution commands.
- - The first step in the above sample YAML changes the path of the root directory.
- - In the second step it downloads the HyperExecute CLI binary.
- - The third step is the execution command which executes The Hyperexecute CLI binary. This contains LambdaTest username, access key, and path of the Yaml created for Hyperexecute. You can find more information on this [here.](https://www.lambdatest.com/support/docs/hyperexecute-cli-run-tests-on-hyperexecute-grid/)
-
-
-
-
-
-### 4. Run the Workflow
-To run the new pipeline that you just created, click the **Run workflow** button on the workflow page.
-
-
-
Understand the step by step process of how to get your username and access key.
+Learn how to setup HyperExecute environment variables.
+Learn how to save and manage your secrets in HyperExecute Vault.
+Learn how to configure tunnel for testing locally hosted websites using HyperExecute.
+Learn how to find correct concurrency for my Job
+Learn about how you can configure your sourcePayload.
+How to get the list of all the supported browsers in HyperExecute via API call.
+Learn how to run your selenium tests via local driver without setting remote driver in HyperExecute.
+Execute Smart UI Tests to ensure the visual consistency of web applications using HyperExecute.
+Execute Smart UI Tests using SDK to ensure the visual consistency of web applications using HyperExecute.
+Run app automated tests on Emulators and Simulators using HyperExecute.
+Run app automated tests on Real Mobile Devices using HyperExecute..
+Learn all the status of the HyperExecute at different levels - Job level, Task level, Stage level and Test level.
+Understand how to perform various activities in the HyperExecute Dashboard.
+Learn about the real world implementations of the HyperExecute.
+Learn the insights of your Tasks based on the defined parameters in the Tests.
+Learn about different types of Job Reports based on various frameworks.
+Learn how to migrate your tests from the Saucelabs to HyperExecute.
+Learn why HyperExecute Private Cloud is a must-have for your organization.
Learn how to distribute concurrency to different sub-organizations .
Learn how to take access to your LambdaTest account and log in on your behalf from the backend.
diff --git a/docs/hyperexecute-projects.md b/docs/hyperexecute-projects.md index e4cbbfd4..0b4d26cb 100644 --- a/docs/hyperexecute-projects.md +++ b/docs/hyperexecute-projects.md @@ -1,7 +1,6 @@ --- id: hyperexecute-projects -title: Hyperexecute Projects -hide_title: true +title: HyperExecute Projects sidebar_label: Projects description: Discover the power of HyperExecute Projects for agile test execution. Learn how to set up and run custom projects with ease, maximizing testing efficiency. keywords: @@ -36,32 +35,84 @@ slug: hyperexecute-projects/ }) }} > -# HyperExecute Projects -Hyperexecute allows you to setup custom projects on the GUI itself, giving the flexibility and agility for test execution. +Projects serve as a centralized platform for organizing and managing test executions. By grouping similar tests, controlling access, and tracking progress, Projects streamline the testing process. You can configure [custom project](/support/docs/hyperexecute-projects/#setup-your-project) and [workflow setups](/support/docs/hyperexecute-projects/#schedule-your-workflows), as well as [integrate Tosca, Tosca DEX, and JMeter tests](/support/docs/hyperexecute-projects/#setting-up-specialized-projects) for unified management. This enables efficient test script creation, automated execution scheduling, and valuable insights into test results. -## Steps to setup the Project +## Setup your Project +**Step 1:** Go to the **Projects** section in HyperExecute. Click on the **New Project** to create your projects on HyperExecute. -**Step 1:** Go to the **Projects** section. Click on the **Setup new Project** to create your projects on HyperExecute. +**Step 2:** Select **Custom Project** as the **Type of Project**. Provide a unique **Project Name** (required) and select your desired framework and language used in your project. Click on the **Continue**. -Optimize and accelerate end-to-end testing for your entire digital landscape using Tosca.
+Perform end-to-end testing using Tosca DEX with HyperExecute.
+Use Tosca for SAP to integrate with HyperExecute.
+Experience the JMeter Performance Testing with HyperExecute.
+Combination of both Auto Split Strategy and Matrix Multiplexing Strategy to run tests in parallel on our virtual machines. -
+Combination of both Auto Split Strategy and Matrix Multiplexing Strategy to run tests in parallel on our virtual machines.
Learn the insights of your triggered Jobs on HyperExecute Platform.
+Learn the insights of the Stages of your Jobs on HyperExecute Platform.
+Learn the insights of the Tasks on HyperExecute Platform.
+Learn the insights of your Tasks based on the defined parameters in the Tests.
+Learn about the HyperExecute Resource Utilization Widgets.
+Use Smart Auto Split Strategy, Matrix Strategy or Hybrid Strategy modes to split and execute tests as per your requirements. -
+Use Smart Auto Split Strategy, Matrix Strategy or Hybrid Strategy modes to split and execute tests as per your requirements.
Jobs Archiving allows you to archive the non important jobs so that you and your team can focus only on required ones.
Schedule your tests smartly on the HyperExecute to perform the tests automatically at the scheduled day, date and time.
-Mute scenarios that have been continuously failing for a pre-defined number of times, ignore expected failures, achieve better runtimes and faster feedback on the executed Jobs.
Explore a range of CI/CD tool integrations to optimize your testing pipeline.
+Effortlessly integrate with products like Tosca, Katalon and more for streamlined test execution and management.
+Integrate seamlessly with other LambdaTest products sucha as Smart UI or Real Device and enhance your testing environment's efficiency.
+
Use Smart Auto Split Strategy, Matrix Strategy or Hybrid Strategy modes to split and execute tests as per your requirements.
+Get a detailed test report for every job and stream the terminal logs in real time to understand everything that happened with your test.
+Run your jobs faster or fail them quickly to receive instant feedback and save your test time.
+Label the jobs that you want to run first on HyperExecute by giving them a higher priority.
+HyperExecute also manages all of your test artifacts and provides you with the option to implement smart workflows on your test code without modifying it.
+Root Cause Analysis and Error Classification features in HyperExecute to view different kinds of errors and directly land on corrective measures or fixes.
+Triggers long-running Application Servers tasks like running WebApps or Databases and generates the logs report in the Dashboard.
+Auto Healing Feature allows you to automatically rеcovеr from cеrtain typеs of failurеs during thе еxеcution of your tеst scripts.
+Setup your custom projects using HyperExecute GUI itself and initiate the tests execution from the platform only.
+Jobs Archiving allows you to archive the non important jobs so that you and your team can focus only on required ones.
+Repeatedly fetching data during tests can slow down execution. HyperExecute's intelligent caching stores frequently accessed data, significantly speeding up test runs and optimizing resource utilization.
+Mute scenarios that have been continuously failing for a pre-defined number of times, ignore expected failures, achieve better runtimes and faster feedback on the executed Jobs.
+Occasional test failures happen. HyperExecute's configurable retry mechanism allows you to automatically re-run flaky or failed tests based on defined criteria, ensuring accurate results and preventing false negatives.
+HyperExecute streamlines your CI/CD workflows by eliminating the need for manual test script uploads. Configure the `sourcePayload` parameter in your HyperExecute YAML file, and it will securely access your test scripts directly from your Git repository using secure access tokens.
+If your codebase changes are less than 75%, HyperExecute intelligently identifies and uploads only the updated or added parts, efficiently mapping the remainder from previous uploads. This approach minimizes wait times and streamlines your testing cycles, leading to faster results and a smoother overall testing experience.
+Test your native Android and iOS mobile applications on Appium automation cloud.
+Test your Android and iOS web applications on Appium automation cloud.
+Test your Android mobile applications on Espresso automation cloud.
+Test your Android mobile applications on Maestro automation cloud.
+Test your iOS applications on XCUI automation cloud.
+Learn about the built-in capabilities supported by Selenium for launching browsers.
+Understand the capabolities supported in LambdaTest for Selenium version 3
+Understand the capabolities supported in LambdaTest for Selenium version 4
+Discover additional capabilities offered by LambdaTest beyond Selenium defaults for more control over test execution.
+Explore how to run automated tests in browsers without a graphical user interface.
+Configure a custom Chrome profile with specific extensions or settings for your tests.
+Define preferences like browser size, language, and cookies for your tests.
+Simulate different internet connection speeds to test website behavior under various network conditions.
+Map custom domain names to specific IP addresses for your testing needs.
+Leverage Lighthouse to analyze website performance metrics within your tests.
+Run multiple Lighthouse audits and generate reports for comparison.
+Explore debugging tools provided by LambdaTest to troubleshoot your tests.
+Access detailed logs generated during your test execution for analysis.
+Understand how LambdaTest's SmartWait feature waits for elements to become interactive before proceeding with tests.
+Set custom headers in your test requests to simulate specific scenarios.
+Learn about LambdaTest's autohealing functionality that automatically recovers from unexpected session issues.
+Discover how to use LambdaTest's command annotations to control test execution flow.
+Utilize HTTP Archive (HAR) logs to analyze network traffic during your tests.
+Protect sensitive information like passwords or tokens from being exposed in test logs.
+In case your favorite framework or tool isn't listed here, just give us a window.openLTChatWidget()}>Shout Out Here.
+
In case of any other problems, feel free to window.openLTChatWidget()}>Contact Us.
HyperExecute allows you to execute your Smart UI Tests in HyperExecute using Cypress.
HyperExecute allows you to execute your Smart UI Tests in HyperExecute using Playwright.
+Learn how to perform Visual UI Testing using command line interface.
-Learn how to perform Visual Regression Testing using Selenium Testing on Smart UI.
+Perform Visual UI Testing using CLI.
Learn how to perform Visual Regression Testing using Cypress Testing on Smart UI.
+Perform Visual UI Testing using Hooks.
Learn how to perform Visual Regression Testing using Playwright Testing on Smart UI.
+Perform Visual UI testing of Figma Designs using SmartUI
Learn how to perform Visual Regression Testing using Puppeteer Testing on Smart UI.
+Perform Visual UI testing of PDFs using SmartUI.
Learn how to perform Visual Regression Testing using K6 on Smart UI.
-Learn how to perform Visual Regression Testing using Storybook Testing on Smart UI.
-Learn how to perform Visual Regression Testing using Appium Testing on Smart UI.
-Upload Screenshots through API for Visual Regression Testing
-Learn how to perform Visual Regression testing of PDFs using SmartUI.
+Upload Screenshots through API for Visual UI Testing
Learn grouping your screenshots into different builds and map as per your testing suite needs.
+Upload Screenshots through CLI for Visual UI Testing
Learn how to customize your project, manage approvals, configure comparison parameters, and more.
-Learn how configure advanced comparison settings options.
+Perform Visual UI Testing using Storybook on Smart UI.
Learn how to handle HTML DOM in Smart UI
-Learn Git Branching with SmartUI projects.
+Learn how to execute SmartUI CLI with Git Commits.
Setup your Github Repos with SmartUI projects and run your CI along with visual regression testing.
-In case your favorite framework or tool isn't listed here, just give us a window.openLTChatWidget()}>Shout Out Here.
+ In case of any other problems, feel free to window.openLTChatWidget()}>Contact Us.
We support all languages and frameworks that are compatible with Appium, so in case your favorite isn't in the table.
Don't worry, you can still run the test. window.openLTChatWidget()}>Contact Us for any help.
Helping you test web and mobile apps at scale.
+Your Ultimate Resource for Seamless Cross-Browser Testing Across Desktop and Mobile Platforms
Learn how to start Selenium Automation Testing across multitude of desktop and mobile browsers.
-Run & analyze Cypress test scripts across 40+ browser versions on cloud.
-Conduct online Playwright Testing of your websites across 40+ browser versions.
-Test your Puppeteer scripts online across 40+ browser versions.
-Test your web and native mobile apps on Appium mobile device cloud of 3000+ real devices.
-Automate your mobile apps on Espresso automation cloud of 3000+ real devices.
-Run app test automation of your iOS applications on XCUI automation cloud.
-Explore how to use Test At Scale to expedite your testing, cut job times, and get faster feedback on code commit.
-Learn how to leverage smart test orchestration and accelerated End-to-End Selenium test execution with HyperExecute.
-API to scalable Selenium testing infrastructure for agile teams.
+Basic Features Of LambdaTest Platform.
-Set of properties used to configure your Selenium tests.
-One click bug logging to bug tracking tools.
-List of all desktop and mobile browsers available at LambdaTest platform
Calculate how many parallel sessions you would require.
-Test your locally hosted or privately hosted pages on LambdaTest platform.
-Check all the tests that you have performed.
-Troubleshoot problems encountered while performing Real Time test.
-One click bug logging to bug tracking and project management tool.
-Test your locally hosted or privately hosted pages on LambdaTest platform.
-List of all desktop and mobile browsers available at LambdaTest platform.
-Debug with Native Browser Tools on Desktop and Mobile.
-Check out how you can integrate LambdaTest with Jira, Asana, Slack, Trello.
-Learn how to use Issue tracker step by step.
-Check all the tests that you have performed.
-Learn more on how to solve problems in Screenshot testing.
-Guide to troubleshoot problems of Responsive test.
-Test Website For Responsiveness Easily
-Perform pixel-by-pixel comparison between multiple images.
-One click bug logging to bug tracking and project management tool.
-Integrate LambdaTest with your CI/CD pipelines to boost your go-to-market delivery.
-Integrate LambdaTest with your favorite project management tools like Jira, Asana, Slack, Trello.
-Integrate LambdaTest with your favorite codeless automation tools like Katalon, Selenium IDE, Ranorex.
-Integrate LambdaTest with your favorite test reporting tool like TestRail, Zebrunner.
-Integrate LambdaTest with your favorite communication tool like Slack, Microsoft, Rocket.chat.
-Integrate LambdaTest with your favorite plugin and extensions like Chrome Extension, Wordpress Plugin.
-LambdaTest Plugin For WordPress Automated Screenshot Generation
-LambdaTest Screenshot Chrome Extension Automated Screenshot Generation
-List of all desktop and mobile browsers available at LambdaTest platform.
-Test your locally hosted or privately hosted pages on LambdaTest platform.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
- -- -
\ No newline at end of file diff --git a/docs/tas-how-to-guides-gl-token.md b/docs/tas-how-to-guides-gl-token.md deleted file mode 100644 index 5fbd39e3..00000000 --- a/docs/tas-how-to-guides-gl-token.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -id: tas-how-to-guides-gl-token -title: Generating GitLab Personal Access Token -hide_title: true -sidebar_label: Generating GitLab Personal Access Token -description: Generating your Personal Access Token on GitLab -keywords: - - LambdaTest TAS - - Test at Scale - - TAS - Generating GitLab Personal Access Token - - TAS - How to Guides -url: https://www.lambdatest.com/support/docs/ -site_name: LambdaTest -slug: tas-how-to-guides-gl-token/ ---- - -# Generating GitLab Personal Access Token -*** -- Navigate to [GitLab Settings](https://gitlab.com/-/profile/personal_access_tokens). -- Enter **Token name** and add **Expiration date**. -- **Select the scopes** for the token. Add `api`, `read_api`, `read_user`, `read_repository` access to the scope. -- Click on **Create personal access token**. -- **Copy and Save** your token securely. - -> **NOTE:** TAS needs `api`, `read_api`, `read_user`, `read_repository` permissions in order to function properly. - -- - -
\ No newline at end of file diff --git a/docs/tas-learn-about-tas-architecture.md b/docs/tas-learn-about-tas-architecture.md deleted file mode 100644 index 816a1fa5..00000000 --- a/docs/tas-learn-about-tas-architecture.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -id: tas-learn-about-tas-architecture -title: Architecture -hide_title: true -sidebar_label: Architecture -description: TAS Architecture -keywords: - - LambdaTest TAS - - Test at Scale - - TAS - Introduction - - TAS - Learn more about TAS - - TAS - Architecture -url: https://www.lambdatest.com/support/docs/ -site_name: LambdaTest -slug: tas-learn-about-tas-architecture/ ---- - -# Architecture -*** - -## TAS Terminology -*** - -- **Action**: Action is a term to signify generic execution triggered by the TAS server in response to a webhook or any other request. Job, Task, pre-processing, and post-processing, FTM, Culprit finding, git-bisect are different kinds of action. - -- **Task**: An action triggered for running activities for a particular commit. This includes fetching dependencies, discovering tests, running tests, and publishing results. - -- **FTM**: Flaky test management is a type of Task that gets triggered on special events such as new test introduction, test updates, etc. The TAS server will conduct Flaky test management tasks just like any other actions and will spawn containers for them. - -- **Job**: The collection of tasks is called a job. - -## Major Components -*** - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Issue tracker helps you to instantly maintain and handle your bugs at one place.
-Check the logs of all cross browser testing performed by you on LambdaTest.
-Learn how to view assertion errors as exceptions and handle them better.
-Learn how to use filter toolbar for each tab and how you can filter your tests on each of them.
-Learn how to group your test builds with Build tags.
-Use Tosca Commander to integrate with HyperExecute. -
+Use Tosca Commander to integrate with HyperExecute.
Use Tosca DEX Server to integrate with HyperExecute. -
+Use Tosca DEX Server to integrate with HyperExecute.
+Use Tosca for SAP to integrate with HyperExecute.
Learn how to capture screenshots in bulk through different desktops and mobile devices running on various OS in a single go.
Mark as Bug is a feature that would help you highlight any UI observation from your test sessions on LambdaTest.
Learn how to capture full-page screenshots of any URL by invoking an API call to LambdaTest cloud servers.
Learn how to to automatically capture bulk, full-paged screenshots of any URL over different browsers.
The default list of Mobile and Desktop browsers for Automated Screenshot Testing
Learn how to check the appearance of a website with RWD(Responsive Web Design).
Mark as Bug is a feature that would help you highlight any UI observation from your test sessions on LambdaTest.
Learn how to test and compare two image layouts to determine the differences between them quickly.
diff --git a/docs/vividus-integration.md b/docs/vividus-integration.md index 34898033..90db81df 100644 --- a/docs/vividus-integration.md +++ b/docs/vividus-integration.md @@ -2,7 +2,7 @@ id: vividus-integration title: How to Perform Vividus Automation Tests Using LambdaTest? hide_title: true -sidebar_label: Vividus Integration +sidebar_label: Vividus description: With this integration, run your tests from Vividus tool, directly on LambdaTest cloud-based Selenium Grid, on 3000+ desktop & mobile browser and OS combinations keywords: - lambdatest integrations @@ -73,7 +73,7 @@ selenium.grid.password=The moment you close the session, LambdaTest automatically sanitize the whole virtual machine. What that means is that we delete all historical data, downloads, installed extensions, saved passwords, etc. We reset the browsers to factory settings. This automatically logs you out of all pages and auto deletes all data that you may have saved. You would still have access to screenshots and issues you may have generated during the session.
Yes! Every time you close a session we would reset all settings. We are working on a way to help you change and save a set of customized default browser settings. If your need is critical and changing browser settings in each new session takes a lot of your time, send us a message from here. We will try to find a solution for you.
By going to the Issue tracker, you can add your teammates as watchers for the particular issue and you can also assign them the issue by marking them as 'assignee'. Incase the team-mate is not added yet, you will also find an option in the tracker to invite them.
+By going to the Issue tracker, you can add your teammates as watchers for the particular issue and you can also assign them the issue by marking them as 'assignee'. In case the team-mate is not added yet, you will also find an option in the tracker to invite them.
Any premium plan will allow you to test apps on emulators/simulators. The number of parallel sessions will depend on your parallel session plan. Refer to our plans and pricing page for further information.
-Through On-demand pass you can get 120 minutes of manual testing time on LambdaTest platform at $10 for 30 days. Currently, On-demand pass is not covered for Realtime Native App testing.
-You need not opt for a seperate App Testing Plan, as parallelism (or concurrency) for app testing is synced with Realtime Browser testing. To run native mobile app tests parallely (or concurrently) with Realtime Browser testing, you need to ‘at least’ be on a two (or more) parallel session plan.
+You need not opt for a seperate App Testing Plan, as parallelism (or concurrency) for app testing is synced with Realtime Browser testing. To run native mobile app tests parallelly (or concurrently) with Realtime Browser testing, you need to ‘at least’ be on a two (or more) parallel session plan.
Accessing hardware sensors for biometric authentication is currently not supported on real devices.
- +As of now, accessing settings on iOS is restricted with the public cloud plan. However, you can access iOS device settings with our private cloud plan. +
+In order to handle the location pop-up, you can use below capability in the script and the location will be auto handle in the test.
-
- caps.setCapability("autoAcceptAlerts", true);
-
- Please note that autoAcceptAlerts: true
won't work on iOS devices with iOS 14. This is a known issue and already raised on Appium.
+
In order to handle the location pop-up, you can use below capability in the script and the location will be auto handle in the test.
+
+ caps.setCapability("autoAcceptAlerts", true);
- Note: For iOS 13 and above, pop-ups can have more than two buttons. When there are more than two buttons on popups, autoDismissAlerts and autoAcceptAlerts behavior is flipped. For such popups, use autoAcceptAlerts to automatically dismiss all popups and autoDismissAlerts to automatically accept all popups.
+ Please note that autoAcceptAlerts: true
won't work on iOS devices with iOS 14. This is a known issue and already raised on Appium.
+
+ Note: For iOS 13 and above, pop-ups can have more than two buttons. When there are more than two buttons on popups, autoDismissAlerts and autoAcceptAlerts behavior is flipped. For such popups, use autoAcceptAlerts to automatically dismiss all popups and autoDismissAlerts to automatically accept all popups.
Our application is hosted entirely on third party hosting providers like AWS, Hetzner, etc. All our hosting partners have very high security protocols. For example checkout AWS security protocols, or Hetzner Security protocols.
+Our application is hosted entirely on third party hosting providers like AWS, Hetzner, etc. All our hosting partners have very high security protocols. For example checkout AWS security protocols, or Hetzner Security protocols.
LambdaTest price is based on plan level and the no. of parallel sessions. As per your need you can upgrade and downgrade at any time. However, changes will not take effect until your next billing cycle.
An On Demand Pass is a one time payment option for to those who wish to use LambdaTest for a shorter duration. With On Demand Pass, you get 120 Minutes of testing time with full access to LambdaTest features for 30 days at a price of just $10. This is a non recurring payment ,i.e. if you wish to continue this plan you would have to purchase On Demand Pass again.
-