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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/left-nav-title.json
Original file line number Diff line number Diff line change
Expand Up @@ -754,5 +754,8 @@
"requirements": {"/docs/atto/generative-ai/generate-tests/requirements/": "Add Requirements"},
"live-editor": {"/docs/atto/generative-ai/copilot/live-editor/": "In Testsigma"},
"live-editor": {"/docs/live-editor/": "Copilot"},
"jira": {"/docs/integrations/bug-reporting/jira/": "Jira" }
"jira": {"/docs/integrations/bug-reporting/jira/": "Jira" },
"jira": {"/docs/atto/generative-ai/integrations/jira/": "Jira"},
"xray": {"/docs/atto/generative-ai/integrations/xray/": "Xray"},
"qtest": {"/docs/atto/generative-ai/integrations/qtest/": "qTest" }
Comment on lines +757 to +760
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

# First, let's check if the file exists and its size
ls -lh src/left-nav-title.json && wc -l src/left-nav-title.json

Repository: testsigmahq/testsigma-docs

Length of output: 169


🏁 Script executed:

# Read the specific lines mentioned in the review
echo "=== Lines 757-760 (disputed section) ===" && sed -n '757,760p' src/left-nav-title.json
echo ""
echo "=== Lines 423 (claimed earlier jira) ===" && sed -n '423p' src/left-nav-title.json
echo ""
echo "=== Lines 729-732 (claimed earlier entries) ===" && sed -n '729,732p' src/left-nav-title.json

Repository: testsigmahq/testsigma-docs

Length of output: 754


🏁 Script executed:

# Let's see more context around these sections to understand the structure
echo "=== Context around lines 755-765 ===" && sed -n '755,765p' src/left-nav-title.json
echo ""
echo "=== Context around lines 420-430 ===" && sed -n '420,430p' src/left-nav-title.json
echo ""
echo "=== Context around lines 725-735 ===" && sed -n '725,735p' src/left-nav-title.json

Repository: testsigmahq/testsigma-docs

Length of output: 1738


🏁 Script executed:

# Let's understand the parent structure
echo "=== Broader context (lines 410-435) ===" && sed -n '410,435p' src/left-nav-title.json
echo ""
echo "=== Broader context (lines 720-765) ===" && sed -n '720,765p' src/left-nav-title.json

Repository: testsigmahq/testsigma-docs

Length of output: 4407


🏁 Script executed:

# Validate if the JSON is well-formed and check for parent structure
jq . src/left-nav-title.json > /dev/null 2>&1 && echo "JSON is valid" || echo "JSON is invalid"

# Find the parent key that contains these duplicate keys
jq 'keys' src/left-nav-title.json | head -20

Repository: testsigmahq/testsigma-docs

Length of output: 546


🏁 Script executed:

# Check if there are duplicate keys at top level
jq 'keys' src/left-nav-title.json | jq -r '.[]' | sort | uniq -d | head -20

# Also check the entire JSON structure to find where the duplicates are
echo "=== Looking for parent object around line 720 ===" && sed -n '700,730p' src/left-nav-title.json | head -40

Repository: testsigmahq/testsigma-docs

Length of output: 2794


🏁 Script executed:

# Count occurrences of potentially duplicate keys at the same level
echo "=== Counting occurrences of keys ===" 
rg '"jira":\s*\{' src/left-nav-title.json | wc -l
rg '"xray":\s*\{' src/left-nav-title.json | wc -l
rg '"qtest":\s*\{' src/left-nav-title.json | wc -l
rg '"live-editor":\s*\{' src/left-nav-title.json | wc -l
rg '"requirements":\s*\{' src/left-nav-title.json | wc -l

# Also show all lines with these keys
echo ""
echo "=== All 'jira' entries ===" && rg -n '"jira":\s*\{' src/left-nav-title.json

Repository: testsigmahq/testsigma-docs

Length of output: 369


🏁 Script executed:

# Let's verify what jq actually keeps (last occurrence)
echo "=== What jq preserves for 'jira' ===" && jq '.jira' src/left-nav-title.json
echo ""
echo "=== What jq preserves for 'xray' ===" && jq '.xray' src/left-nav-title.json
echo ""
echo "=== What jq preserves for 'qtest' ===" && jq '.qtest' src/left-nav-title.json

# Show all occurrences of xray to see the overwriting
echo ""
echo "=== All 'xray' entries ===" && rg -n '"xray":\s*\{' src/left-nav-title.json
echo ""
echo "=== All 'qtest' entries ===" && rg -n '"qtest":\s*\{' src/left-nav-title.json

Repository: testsigmahq/testsigma-docs

Length of output: 1006


Critical: Duplicate JSON keys cause silent data loss.

The file contains duplicate top-level keys ("jira", "xray", "qtest") appearing 4–5 times each. JSON parsers retain only the last occurrence, permanently discarding earlier mappings:

  • Line 423 "jira" (bug-reporting) → lost, overwritten by line 758
  • Line 426 "xray" (bug-reporting) → lost, overwritten by line 759
  • Line 699 "xray" (test-management) → lost, overwritten by line 759
  • Line 700 "qtest" (test-management) → lost, overwritten by line 760

Only the final entries (lines 758–760, all pointing to atto/generative-ai paths) are retained. All bug-reporting and test-management navigation mappings are silently discarded.

Remove lines 757–760, or consolidate duplicate keys by renaming them (e.g., "jira-atto", "jira-bug-reporting") if all mappings must coexist.

🤖 Prompt for AI Agents
In src/left-nav-title.json around lines 757 to 760 there are duplicate top-level
keys ("jira", "xray", "qtest") that overwrite earlier entries and cause silent
data loss; remove the duplicate block at 757–760 or consolidate by renaming keys
so all mappings coexist (e.g., "jira-bug-reporting" vs "jira-atto" or merge the
paths under a single unique key), and ensure the final JSON has unique keys for
each navigation mapping and validates as proper JSON.

}
31 changes: 29 additions & 2 deletions src/pages/docs/atto/generative-ai/generate-tests/requirements.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,42 @@ Testsigma allows you to generate test cases from requirements using Generative A
4. In the **Figma Designs** dialog,
- Select a **Team**, **Project**, **Figma design file**, **Section** and **Page** from the respective dropdown menus.
- Click **+ Select Frames**, select the required frames in the **Select Frames** screen, and click **Save**.
- If you want to remove all the selections that you have made, click **Clear Selection**.

![Figma Inputs](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/atto/requirements_2.png)
- If you want to remove all the selections that you have made, click **Clear Selection**.

[[info | **NOTE**:]]
| - If the selected page has no **Sections**, you can directly select the frames.
|
| - The maximum limit for selecting frames is 10.


> <p id="prerequisites">Troubleshooting: Figma Pages Not Loading in Testsigma</p>
>
>
> In some cases, the Figma pages may fail to load and display **No pages** even if the same file worked previously. This issue typically occurs when Figma’s API rate limits are exceeded, preventing Testsigma from fetching the required page data.
>
> ![Figma No Page Error](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/Updated_Doc_Images/Figma_No_Page_Error.png)
>
> ### **Cause**
>
> This issue occurs because Figma has recently tightened its API rate limits, which restrict how frequently external tools can request data. When these limits are exceeded, Figma temporarily stops returning page information, so Testsigma cannot load the list of pages and shows **No pages**. This happens more often with accounts with lower access such as **Viewer**, as they hit the reduced limits much faster.
>
>
> ### **Steps to Resolve the Issue**
>
> **1. Verify the Figma API Key Permissions** <br>
> Ensure the API key used in Testsigma belongs to a Figma account with a **Dev/Full seat**. These roles provide higher API rate limits and help prevent intermittent failures.
>
> **2. Re-generate the API Key (If Needed)** <br>
> If the current key was created under a seat with restricted API access, generate a new key from an account with a higher access tier.
>
> **3. Wait for Rate Limits to Reset** <br>
> If rate limits were exceeded, Figma may temporarily block further requests. Wait a few minutes and then try loading the pages again.
>
> **4. Review Figma Rate Limits** <br>
> For detailed info on rate limits, see [Figma’s Rate Limits](https://developers.figma.com/docs/rest-api/rate-limits/).

Comment on lines +85 to +111
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Fix duplicate ID in troubleshooting section heading.

Line 86 uses id="prerequisites", which duplicates the ID already defined on line 39. This creates invalid markup and breaks anchor linking. Use a unique, descriptive ID for this troubleshooting section instead.

Apply this diff to fix the duplicate ID:

- > <p id="prerequisites">Troubleshooting: Figma Pages Not Loading in Testsigma</p>
+ > <p id="troubleshooting-figma-pages-not-loading">Troubleshooting: Figma Pages Not Loading in Testsigma</p>

Additionally, update the contextual links at the top of the file to include an entry for this new section so it appears in the table of contents:

- type: link
  name: "Add the Data from Files"
  url: "#add-the-data-from-files"
+ - type: link
+   name: "Troubleshooting: Figma Pages Not Loading"
+   url: "#troubleshooting-figma-pages-not-loading"
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
> <p id="prerequisites">Troubleshooting: Figma Pages Not Loading in Testsigma</p>
>
>
> In some cases, the Figma pages may fail to load and display **No pages** even if the same file worked previously. This issue typically occurs when Figmas API rate limits are exceeded, preventing Testsigma from fetching the required page data.
>
> ![Figma No Page Error](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/Updated_Doc_Images/Figma_No_Page_Error.png)
>
> ### **Cause**
>
> This issue occurs because Figma has recently tightened its API rate limits, which restrict how frequently external tools can request data. When these limits are exceeded, Figma temporarily stops returning page information, so Testsigma cannot load the list of pages and shows **No pages**. This happens more often with accounts with lower access such as **Viewer**, as they hit the reduced limits much faster.
>
>
> ### **Steps to Resolve the Issue**
>
> **1. Verify the Figma API Key Permissions** <br>
> Ensure the API key used in Testsigma belongs to a Figma account with a **Dev/Full seat**. These roles provide higher API rate limits and help prevent intermittent failures.
>
> **2. Re-generate the API Key (If Needed)** <br>
> If the current key was created under a seat with restricted API access, generate a new key from an account with a higher access tier.
>
> **3. Wait for Rate Limits to Reset** <br>
> If rate limits were exceeded, Figma may temporarily block further requests. Wait a few minutes and then try loading the pages again.
>
> **4. Review Figma Rate Limits** <br>
> For detailed info on rate limits, see [Figmas Rate Limits](https://developers.figma.com/docs/rest-api/rate-limits/).
> <p id="troubleshooting-figma-pages-not-loading">Troubleshooting: Figma Pages Not Loading in Testsigma</p>
>
>
> In some cases, the Figma pages may fail to load and display **No pages** even if the same file worked previously. This issue typically occurs when Figma's API rate limits are exceeded, preventing Testsigma from fetching the required page data.
>
> ![Figma No Page Error](https://s3.amazonaws.com/static-docs.testsigma.com/new_images/projects/Updated_Doc_Images/Figma_No_Page_Error.png)
>
> ### **Cause**
>
> This issue occurs because Figma has recently tightened its API rate limits, which restrict how frequently external tools can request data. When these limits are exceeded, Figma temporarily stops returning page information, so Testsigma cannot load the list of pages and shows **No pages**. This happens more often with accounts with lower access such as **Viewer**, as they hit the reduced limits much faster.
>
>
> ### **Steps to Resolve the Issue**
>
> **1. Verify the Figma API Key Permissions** <br>
> Ensure the API key used in Testsigma belongs to a Figma account with a **Dev/Full seat**. These roles provide higher API rate limits and help prevent intermittent failures.
>
> **2. Re-generate the API Key (If Needed)** <br>
> If the current key was created under a seat with restricted API access, generate a new key from an account with a higher access tier.
>
> **3. Wait for Rate Limits to Reset** <br>
> If rate limits were exceeded, Figma may temporarily block further requests. Wait a few minutes and then try loading the pages again.
>
> **4. Review Figma Rate Limits** <br>
> For detailed info on rate limits, see [Figma's Rate Limits](https://developers.figma.com/docs/rest-api/rate-limits/).
🤖 Prompt for AI Agents
In src/pages/docs/atto/generative-ai/generate-tests/requirements.md around lines
85 to 111, the troubleshooting heading uses a duplicate id="prerequisites"
(already used at line 39); update the heading to a unique, descriptive id such
as id="figma-no-pages-troubleshooting" (or similar) and then add a corresponding
entry/link to that new id in the file’s table of contents / contextual links at
the top so the anchor works and markup is valid.


---

## **Add the Data from QTest**
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/troubleshooting/NLPs/drag-and-drop.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Drag & Drop NLP"
metadesc: "This article discusses how to drag the element from UI-identifier and drop on the element to UI-identifier. Drag an element from one position and drop it in another position"
noindex: false
order: 23.17
page_id: "Drag & Drop NLP"
page_id: "drag-drop-nlp"
warning: false
---

Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/troubleshooting/NLPs/mysql-db-test-cases.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Use MySQL Addon in NLPs"
metadesc: "Users can execute MySQL queries within NLPs using the MySQL Addon in Testsigma, enabling seamless integration and efficient database operations."
noindex: false
order: 23.19
page_id: "Use MySQL Addon in NLPs"
page_id: "mysql-addon-in-nlps"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Clearing the Session or Cookies"
metadesc: "Understand the reasons for clearing the session or cookies when starting a test | These NLPs help you clear session ot cookies in tests in Testsigma application"
noindex: false
order: 23.15
page_id: "Clearing the Session or Cookies"
page_id: "clearing-the-session-or-cookies"
warning: false
---

Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/troubleshooting/NLPs/ui-identifier.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "UI Identifier NLP"
metadesc: "This article discusses the behavior of the NLP with UI Identifiers designed to interact with UI elements. Learn how to design tests with respect to this NLP"
noindex: false
order: 23.16
page_id: "UI Identifier NLP"
page_id: "ui-identifier-nlp"
warning: false
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Unable to capture dropdown element"
metadesc: " What to do if you are not able to capture drop-down element."
noindex: false
order: 23.12
page_id: "Unable to capture dropdown element"
page_id: "unable-to-capture-dropdown-element"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Unable to Click Checkbox"
metadesc: "This document will help you troubleshoot if you are unable to click the checkbox | Learn how to click the checkbox when it is inaccessible while testing"
noindex: false
order: 23.14
page_id: "Unable to Click Checkbox"
page_id: "unable-to-click-checkbox"
warning: false
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Unable to retrieve value stored in text element"
metadesc: "This article helps you troubleshoot if you cannot retrieve a stored value in a text element | Learn how to retrieve a value stored in text element"
noindex: false
order: 23.11
page_id: "Unable to retrieve value"
page_id: "unable-to-retrieve-value"
warning: false
---
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Unable to Select Radiobutton"
metadesc: "Follow these steps if you're unable to select a radio button | This article guides you to follow a few steps if you can't access radiobutton & continue testing."
noindex: false
order: 23.13
page_id: "Unable to Select Radiobutton"
page_id: "unable-to-select-radiobutton"
warning: false
---

Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/troubleshooting/NLPs/upload-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Uploading Files NLP"
metadesc: "This article discusses how to upload files to your test applicationusing the upload NLP. Learn how to upload the file from three sources"
noindex: false
order: 23.18
page_id: "Uploading Files NLP"
page_id: "uploading-files-nlp"
warning: false
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Troubleshooting API test case failure"
metadesc: "Understand practical troubleshooting methods to efficiently identify and resolve API test case failures in Testsigma, ensuring a seamless testing process."
noindex: false
order: 23.81
page_id: "Troubleshooting API test case failure"
page_id: "troubleshooting-api-test-case-failure"
warning: false
---
---
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/troubleshooting/agent/agent-cleanup.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ page_title: "Testsigma Agent Cleanup Process"
metadesc: "Know the possible reasons why Testsigma agent pops up and then closes unexpectedly. Learn steps to fix the issue by following the troubleshooting steps"
noindex: false
order: 23.36
page_id: "Testsigma Agent Cleanup"
page_id: "testsigma-agent-cleanup"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ page_title: "Testsigma Agent Startup Failures"
metadesc: "Know the possible reasons why Testsigma Agent failed to start beacuse of used ports and learn steps to fix the issue by following the troubleshooting steps"
noindex: false
order: 23.33
page_id: "Testsigma Agent Startup Failure Due to Used Ports"
page_id: "testsigma-agent-startup-failure-due-to-used-ports"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ page_title: "Fix Testsigma Agent Registration Failures"
metadesc: "Know the possible reasons why Testsigma agent registration fails due to privacy settings and learn steps to fix the issue by following the troubleshooting steps"
noindex: false
order: 23.35
page_id: "Fix Testsigma Agent Registration Failures"
page_id: "fix-testsigma-agent-registration-failures"
warning: false
contextual_links:
- type: section
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/troubleshooting/agent/local-tests-queued.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ page_title: "Testsigma Agent Startup Failures"
metadesc: "Know the possible reasons why tests in local executions are permanently marked queued and learn steps to fix the issue by following the troubleshooting steps"
noindex: false
order: 23.34
page_id: "Tests Permanently Queued in Local executions"
page_id: "permanently-queued-in-local-executions"
warning: false
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ page_title: "Apache Tomcat for Testsigma Agent"
metadesc: "Know the reason why Apache Tomcat server is necessary for Testsigma agent | Role of Apache Tomcat server in executing tests locally using Testsigma Agent"
noindex: false
order: 23.37
page_id: "Apache Tomcat for Testsigma Agent"
page_id: "apache-tomcat-for-testsigma-agent"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Unable to Create New Test Session"
metadesc: "Learn what to do if you cannot create a new test session due to an unexpected error. Follow these troubleshooting steps to continue your testing sessions."
noindex: false
order: 23.32
page_id: "Unable to create new test session due to unexpected error"
page_id: "unable-to-create-new-test-session-due-to-unexpected-error"
warning: false
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ page_title: " Troubleshooting Failed to Start Desktop Element Recorder"
metadesc: "Know the possible reasons why Testsigma app failed to start desktop element recorder and learn steps to fix the issue by troubleshooting"
noindex: false
order: 23.41
page_id: "Failed to Start Desktop Element Recorder"
page_id: "failed-to-start-desktop-element-recorder"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Automating Chrome Extension in Testsigma"
metadesc: "This article discusses the ways in which chrome extension can be automated in Testsigma | Learn Automating Chrome Extension for Hybrid & Cloud Executions in Testsigma"
noindex: false
order: 23.96
page_id: "Automating Chrome Extension"
page_id: "automating-chrome-extension"
warning: false
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ page_title: "Check if Element is Enabled, Visible, & Interactable"
metadesc: "Learn different ways to check if an element is enabled, visible, and interactable. Understand different ways to disable, hide, check and select elements"
noindex: false
order: 23.91
page_id: "Verify if an Element is Enabled, Visible, & Interactable"
page_id: "verify-if-an-element-is-enabled-visible-and-interactable"
warning: false
contextual_links:
- type: section
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Convert JUnit XML Report to HTML - Jenkins"
metadesc: "This article discusses how to generate a customized HTML Report from the JUnit Report XML in your CI/CD Pipeline | Convert JUnit XML Report to HTML"
noindex: false
order: 23.97
page_id: "Convert JUnit XML Report to HTML"
page_id: "convert-junit-xml-report-to-html"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ page_title: "Common UI Elements for iOS Apps"
metadesc: "Learn most common UI elements and their common attributes for iOS apps (XCUITest Elements) | Common UI elements for iOS apps, descriptions & attributes"
noindex: false
order: 23.94
page_id: "Common UI Elements for iOS Apps"
page_id: "common-ui-elements-for-ios-apps"
warning: false
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ page_title: "Verify/Confirm File Download"
metadesc: "Learn how to add test steps to verfiy or confirm file download in Testsigma | Creating the following test scenario will help verify/confirm file download"
noindex: false
order: 23.93
page_id: "Verify/Confirm File Download"
page_id: "verify-file-download"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ page_title: "Check if Element is Enabled, Visible, & Interactable"
metadesc: "Learn different how to view test execution video for Testsigma lab(Cloud) executions | Check test execution video from test results in Testsigma"
noindex: false
order: 23.92
page_id: "View Test Execution Video"
page_id: "view-test-execution-video"
warning: false
contextual_links:
- type: section
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/troubleshooting/on-prem/general-issues.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Troubleshooting General Issues"
order: 23.72
page_id: "Troubleshooting Issues"
page_id: "troubleshooting-on-prem-issues"
metadesc: "This article discusses how to troubleshoot some general issues with respect to On-prem setup. Quick troubleshooting solutions for some on-prem general issues"
noindex: false
search_keyword: ""
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/troubleshooting/on-prem/restart-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Restarting docker"
metadesc: "This article helps you understand why you're unable to start or access the application. The following command will help you restart the docker and troubleshoot the issue"
noindex: false
order: 23.71
page_id: "Restart docker when you're unable to access the app"
page_id: "restart-docker-when-app-is-not-accessible"
warning: false
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Secured Business Application Support"
metadesc: "In Testsigma, some prerequisites are necessary to avoid issues and enhance the flexibility. This article discusses prerequisites for cloud executions"
noindex: false
order: 23.22
page_id: "Secured Business Application Support"
page_id: "secured-business-application-support"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ page_title: "Guide to Troubleshoot Deployment Errors in Testsigma CE Docker"
metadesc: "This detailed guide will help you troubleshoot deployment errors in Testsigma CE Docker | Troubleshooting issues while setting up Testsigma CE using Docker."
noindex: false
order: 23.21
page_id: "Deployment Errors Troubleshooting Guide for Testsigma CE Docker"
page_id: "deployment-errors-troubleshooting-guide-for-testsigma-ce-docker"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Troubleshooting Restricted Access to Testsigma"
metadesc: "This article discusses accessing the Testsigma application by whitelisting the necessary URLs, if you have network restrictions set by your administrator"
noindex: false
order: 23.23
page_id: "Troubleshooting Restricted Access"
page_id: "troubleshooting-restricted-access"
warning: false
contextual_links:
- type: section
Expand Down
2 changes: 1 addition & 1 deletion src/pages/docs/troubleshooting/web-apps/chrome-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Missing Elements in the Recorder"
metadesc: "There might be instances where you miss elements on the recorder screen while recording | This article discusses troubleshooting steps for missing elements "
noindex: false
order: 23.54
page_id: "Troubleshooting Missing Elements in the Recorder"
page_id: "troubleshooting-missing-elements-in-the-recorder"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Collecting HAR File for Support Tickets"
metadesc: "A HAR file will help in identifying and diagnosing product performance or latency issues in the application. This article discusses the collecting HAR file"
noindex: false
order: 23.55
page_id: "Collecting HAR File"
page_id: "collecting-har-file"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Most Common Errors with Browser Session"
metadesc: "This article discusses most common errors with browser sessions and how to troubleshoot the errors | Learn how to troubleshoot errors with browser sessions"
noindex: false
order: 23.56
page_id: "Common Errors with Browser Session"
page_id: "common-errors-with-browser-session"
warning: false
contextual_links:
- type: section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Most Common Issues Caused When Using UI Identifiers"
metadesc: "When locating an element we need to make sure that the attribute value is unique. This article discusses most common issues caused when using UI identifiers"
noindex: false
order: 23.53
page_id: "Most Common Issues Caused When Using UI Identifiers"
page_id: "issues-caused-when-using-ui-identifiers"
warning: false
contextual_links:
- type: section
Expand Down
Loading