Skip to content

Commit ae50976

Browse files
moosebayclaude
andcommitted
fix broken internal links in docs using old numbered paths
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e467b99 commit ae50976

6 files changed

Lines changed: 17 additions & 17 deletions

File tree

pages/docs/how-to/ci-integrations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -824,4 +824,4 @@ devtools version
824824

825825
---
826826

827-
**Next:** Explore [Examples & Best Practices](./07-examples-and-best-practices.md) for real-world usage patterns and advanced techniques.
827+
**Next:** Explore [Examples & Best Practices](/docs/cookbook/examples-and-best-practices) for real-world usage patterns and advanced techniques.

pages/docs/how-to/environments-and-variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,4 +748,4 @@ SECRET_KEY=myvalue devtools flow run test.yaml
748748

749749
---
750750

751-
**Next:** Learn how to use the [CLI Tool](./05-cli-tool.md) to run flows from the command line and integrate with CI/CD pipelines.
751+
**Next:** Learn how to use the [CLI Tool](/docs/reference/cli) to run flows from the command line and integrate with CI/CD pipelines.

pages/docs/how-to/import-har.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ Use case: Share with browser debugging tools
275275
Right-click flow → Export → YAML
276276
```
277277

278-
Use case: Version control, CI/CD (see [CLI Tool](./05-cli-tool.md))
278+
Use case: Version control, CI/CD (see [CLI Tool](/docs/reference/cli))
279279

280280
### Export to cURL
281281
```
@@ -317,4 +317,4 @@ Use case: Share individual requests for terminal execution
317317

318318
---
319319

320-
**Next:** Learn how to create and customize [Visual Flows](./03-working-with-flows.md) to build complex API test scenarios.
320+
**Next:** Learn how to create and customize [Visual Flows](/docs/how-to/working-with-flows) to build complex API test scenarios.

pages/docs/how-to/working-with-flows.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ A **Flow** is a visual representation of an API testing workflow. It consists of
3939

4040
### Method 2: Auto-Generate from HAR Import
4141

42-
When you [import a HAR file](./02-importing-har-files.md), DevTools automatically creates a Flow showing:
42+
When you [import a HAR file](/docs/how-to/import-har), DevTools automatically creates a Flow showing:
4343
- Request execution order
4444
- Data dependencies between requests
4545
- Variable extraction points
@@ -431,7 +431,7 @@ Every node automatically creates output variables. Access them from subsequent n
431431

432432
![JavaScript node editor and output](/docs/assets/flow-node-js-config.webp)
433433

434-
See the [Environments & Variables](./04-environments-and-variables.md) guide for more details.
434+
See the [Environments & Variables](/docs/how-to/environments-and-variables) guide for more details.
435435

436436
## Dependencies and Execution Order
437437

@@ -775,4 +775,4 @@ Don't build a 20-node flow without testing!
775775
776776
---
777777
778-
**Next:** Learn about [Environments & Variables](./04-environments-and-variables.md) to manage configurations across different deployment stages.
778+
**Next:** Learn about [Environments & Variables](/docs/how-to/environments-and-variables) to manage configurations across different deployment stages.

pages/docs/reference/cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ flows:
200200
201201
### Complete Example
202202
203-
See [Examples & Best Practices](./07-examples-and-best-practices.md) for full examples.
203+
See [Examples & Best Practices](/docs/cookbook/examples-and-best-practices) for full examples.
204204
205205
## Environment Variables
206206
@@ -261,7 +261,7 @@ test:
261261
API_BASE_URL: https://api-staging.example.com
262262
```
263263
264-
See [CI/CD Integration](./06-cicd-integration.md) for complete examples.
264+
See [CI/CD Integration](/docs/how-to/ci-integrations) for complete examples.
265265
266266
## Output Formats
267267
@@ -701,4 +701,4 @@ Validate responses explicitly:
701701

702702
---
703703

704-
**Next:** Learn how to integrate DevTools CLI into your [CI/CD Pipeline](./06-cicd-integration.md).
704+
**Next:** Learn how to integrate DevTools CLI into your [CI/CD Pipeline](/docs/how-to/ci-integrations).

pages/docs/start-here/install.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,10 @@ After sending a request:
136136

137137
Now that you have DevTools installed and understand the basics:
138138

139-
1. **Import Real Requests**: Learn how to [import HAR files](./02-importing-har-files.md) from browser recordings
140-
2. **Create Flows**: Build visual test workflows with the [Flow Builder](./03-working-with-flows.md)
141-
3. **Manage Environments**: Set up [environments and variables](./04-environments-and-variables.md) for different configurations
142-
4. **Automate Tests**: Integrate with CI/CD using the [CLI tool](./05-cli-tool.md)
139+
1. **Import Real Requests**: Learn how to [import HAR files](/docs/how-to/import-har) from browser recordings
140+
2. **Create Flows**: Build visual test workflows with the [Flow Builder](/docs/how-to/working-with-flows)
141+
3. **Manage Environments**: Set up [environments and variables](/docs/how-to/environments-and-variables) for different configurations
142+
4. **Automate Tests**: Integrate with CI/CD using the [CLI tool](/docs/reference/cli)
143143

144144
## Common First-Time Questions
145145

@@ -158,7 +158,7 @@ DevTools supports:
158158
- cURL commands
159159
- OpenAPI/Swagger specs (coming soon)
160160

161-
See [Importing HAR Files](./02-importing-har-files.md) for details.
161+
See [Importing HAR Files](/docs/how-to/import-har) for details.
162162

163163
### Does DevTools support authentication?
164164

@@ -171,12 +171,12 @@ Yes, DevTools supports all standard authentication methods:
171171

172172
### Can I use DevTools in my CI/CD pipeline?
173173

174-
Absolutely! The CLI tool is designed for CI/CD integration. See [CI/CD Integration](./06-cicd-integration.md) for examples with GitHub Actions, GitLab CI, Jenkins, and more.
174+
Absolutely! The CLI tool is designed for CI/CD integration. See [CI/CD Integration](/docs/how-to/ci-integrations) for examples with GitHub Actions, GitLab CI, Jenkins, and more.
175175

176176
### Is DevTools free?
177177

178178
Yes, DevTools is **open source under the Apache-2.0 license** and free to use. The source code is available on [GitHub](https://github.com/the-dev-tools/dev-tools).
179179

180180
---
181181

182-
**Ready to import real API requests?** Continue to [Importing HAR Files](./02-importing-har-files.md).
182+
**Ready to import real API requests?** Continue to [Importing HAR Files](/docs/how-to/import-har).

0 commit comments

Comments
 (0)