Updated Imports docs & added new navcards#128
Conversation
📝 WalkthroughWalkthroughUpdates the GitHub repository reference in edit links, extends navigation card entries with new categories and reindexed identifiers, and revises CSV import documentation to reflect updated workflow steps and user interface changes. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Possibly related PRs
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@src/pages/docs/test-management/imports-and-exports/csv-file.md`:
- Around line 71-93: The frontmatter contains contextual links that point to old
section anchors which were renamed; open the file's frontmatter and update any
anchor targets that reference the "Prepare and Import" and "View Import Results"
sections to match the new heading slugs (use the markdown/kebab-case anchor form
that matches the actual headings), ensuring any internal links or "related"
frontmatter keys now reference the current anchors used by the headings to
prevent broken links.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: 57fe59fb-5c57-4d4b-8bb6-1db6edeb2331
📒 Files selected for processing (3)
src/components/EditButton.jsxsrc/components/navcards.jsxsrc/pages/docs/test-management/imports-and-exports/csv-file.md
| ## **Prepare and Import** | ||
|
|
||
| After uploading a CSV file, follow these steps to prepare for import: | ||
| 1. After uploading the CSV file, the **Uploaded File Preview** section opens. | ||
|
|
||
| 1. Click **Select a Folder** and select a destination folder for the test cases on **Add Folder Location** overlay. | ||
| 2. Verify the file content and click **Next**. | ||
|
|
||
| 2. Click the **Separator** dropdown and select the correct delimiter based on your CSV file format. | ||
| 3. In the **Map Properties and Values** section, you will see two panels: | ||
| - **Map Properties** to map CSV columns | ||
| - **Test Case Preview** to validate mapped data | ||
|
|
||
| 3. Click the **First Row** dropdown and define the starting row for import. | ||
| 4. Atto automatically maps CSV columns to the corresponding fields in Test Management by Testsigma. | ||
|
|
||
| 4. Click the **File Encoding** dropdown and select the appropriate encoding format to ensure correct data. | ||
| 5. Review the mapped fields. If any fields are missing or incorrectly mapped, update them manually. | ||
|
|
||
| 5. Click **Next** to map the CSV columns to test case attributes. | ||
| 6. Verify the mapped data in the **Test Case Preview** section. | ||
|
|
||
| 7. Click **Begin Import** to start importing the test cases. | ||
|
|
||
| 8. The system creates an import log in the **Imports** section to track progress and results. | ||
|
|
||
| --- | ||
|
|
||
| ## **Mapping Properties and Values** | ||
| ## **View Import Results** |
There was a problem hiding this comment.
Update contextual link anchors to match renamed sections.
Line 71 and Line 93 renamed the headings, but frontmatter still points to old anchors. This will produce broken contextual links.
[suggested fix]
Patch the frontmatter links
- type: link
- name: 'Prepare for Import'
- url: '#prepare-for-import'
+ name: 'Prepare and Import'
+ url: '#prepare-and-import'
- type: link
- name: 'Mapping Properties and Values'
- url: '#mapping-properties-and-values'
+ name: 'View Import Results'
+ url: '#view-import-results'🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@src/pages/docs/test-management/imports-and-exports/csv-file.md` around lines
71 - 93, The frontmatter contains contextual links that point to old section
anchors which were renamed; open the file's frontmatter and update any anchor
targets that reference the "Prepare and Import" and "View Import Results"
sections to match the new heading slugs (use the markdown/kebab-case anchor form
that matches the actual headings), ensuring any internal links or "related"
frontmatter keys now reference the current anchors used by the headings to
prevent broken links.
Summary by CodeRabbit
Release Notes
New Features
Documentation
Chores